pub struct RequestBuilder {
Show 26 fields pub method: Method, pub url: ServoUrl, pub headers: HeaderMap, pub unsafe_request: bool, pub body: Option<RequestBody>, pub service_workers_mode: ServiceWorkersMode, pub destination: Destination, pub synchronous: bool, pub mode: RequestMode, pub cache_mode: CacheMode, pub use_cors_preflight: bool, pub credentials_mode: CredentialsMode, pub use_url_credentials: bool, pub origin: ImmutableOrigin, pub referrer: Referrer, pub referrer_policy: Option<ReferrerPolicy>, pub pipeline_id: Option<PipelineId>, pub redirect_mode: RedirectMode, pub integrity_metadata: String, pub csp_list: Option<CspList>, pub url_list: Vec<ServoUrl>, pub parser_metadata: ParserMetadata, pub initiator: Initiator, pub https_state: HttpsState, pub response_tainting: ResponseTainting, pub crash: Option<String>,
}

Fields§

§method: Method§url: ServoUrl§headers: HeaderMap§unsafe_request: bool§body: Option<RequestBody>§service_workers_mode: ServiceWorkersMode§destination: Destination§synchronous: bool§mode: RequestMode§cache_mode: CacheMode§use_cors_preflight: bool§credentials_mode: CredentialsMode§use_url_credentials: bool§origin: ImmutableOrigin§referrer: Referrer§referrer_policy: Option<ReferrerPolicy>§pipeline_id: Option<PipelineId>§redirect_mode: RedirectMode§integrity_metadata: String§csp_list: Option<CspList>§url_list: Vec<ServoUrl>§parser_metadata: ParserMetadata§initiator: Initiator§https_state: HttpsState§response_tainting: ResponseTainting§crash: Option<String>

Servo internal: if crash details are present, trigger a crash error page with these details.

Implementations§

source§

impl RequestBuilder

source

pub fn new(url: ServoUrl, referrer: Referrer) -> RequestBuilder

source

pub fn initiator(self, initiator: Initiator) -> RequestBuilder

source

pub fn method(self, method: Method) -> RequestBuilder

source

pub fn headers(self, headers: HeaderMap) -> RequestBuilder

source

pub fn unsafe_request(self, unsafe_request: bool) -> RequestBuilder

source

pub fn body(self, body: Option<RequestBody>) -> RequestBuilder

source

pub fn destination(self, destination: Destination) -> RequestBuilder

source

pub fn synchronous(self, synchronous: bool) -> RequestBuilder

source

pub fn mode(self, mode: RequestMode) -> RequestBuilder

source

pub fn use_cors_preflight(self, use_cors_preflight: bool) -> RequestBuilder

source

pub fn credentials_mode( self, credentials_mode: CredentialsMode ) -> RequestBuilder

source

pub fn use_url_credentials(self, use_url_credentials: bool) -> RequestBuilder

source

pub fn origin(self, origin: ImmutableOrigin) -> RequestBuilder

source

pub fn referrer_policy( self, referrer_policy: Option<ReferrerPolicy> ) -> RequestBuilder

source

pub fn pipeline_id(self, pipeline_id: Option<PipelineId>) -> RequestBuilder

source

pub fn redirect_mode(self, redirect_mode: RedirectMode) -> RequestBuilder

source

pub fn integrity_metadata(self, integrity_metadata: String) -> RequestBuilder

source

pub fn parser_metadata(self, parser_metadata: ParserMetadata) -> RequestBuilder

source

pub fn https_state(self, https_state: HttpsState) -> RequestBuilder

source

pub fn response_tainting( self, response_tainting: ResponseTainting ) -> RequestBuilder

source

pub fn crash(self, crash: Option<String>) -> Self

source

pub fn build(self) -> Request

Trait Implementations§

source§

impl Clone for RequestBuilder

source§

fn clone(&self) -> RequestBuilder

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RequestBuilder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for RequestBuilder

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl MallocSizeOf for RequestBuilder

source§

fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize

Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself.
source§

impl Serialize for RequestBuilder

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,