pub enum RequestPolicyContainer {
Client,
PolicyContainer(PolicyContainer),
}
Expand description
When a policy container is associated with a request, it has an additional state of “Client”. As per the spec:
"client" is changed to a policy container during fetching. It provides a convenient way for standards to not have to set request’s policy container.
This can be achieved with an Option
however this struct is used with the intent to reduce
ambiguity when mapping our implementation to the spec.
https://fetch.spec.whatwg.org/#concept-request-policy-container
Variants§
Client
PolicyContainer(PolicyContainer)
Trait Implementations§
source§impl Clone for RequestPolicyContainer
impl Clone for RequestPolicyContainer
source§fn clone(&self) -> RequestPolicyContainer
fn clone(&self) -> RequestPolicyContainer
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RequestPolicyContainer
impl Debug for RequestPolicyContainer
source§impl Default for RequestPolicyContainer
impl Default for RequestPolicyContainer
source§fn default() -> RequestPolicyContainer
fn default() -> RequestPolicyContainer
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RequestPolicyContainer
impl<'de> Deserialize<'de> for RequestPolicyContainer
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 RequestPolicyContainer
impl MallocSizeOf for RequestPolicyContainer
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
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.
Auto Trait Implementations§
impl Freeze for RequestPolicyContainer
impl RefUnwindSafe for RequestPolicyContainer
impl Send for RequestPolicyContainer
impl Sync for RequestPolicyContainer
impl Unpin for RequestPolicyContainer
impl UnwindSafe for RequestPolicyContainer
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian()
.