chromiumoxide::cdp::browser_protocol::network

Enum SetCookieBlockedReason

Source
pub enum SetCookieBlockedReason {
Show 22 variants SecureOnly, SameSiteStrict, SameSiteLax, SameSiteUnspecifiedTreatedAsLax, SameSiteNoneInsecure, UserPreferences, ThirdPartyPhaseout, ThirdPartyBlockedInFirstPartySet, SyntaxError, SchemeNotSupported, OverwriteSecure, InvalidDomain, InvalidPrefix, UnknownError, SchemefulSameSiteStrict, SchemefulSameSiteLax, SchemefulSameSiteUnspecifiedTreatedAsLax, SamePartyFromCrossPartyContext, SamePartyConflictsWithOtherAttributes, NameValuePairExceedsMaxSize, DisallowedCharacter, NoCookieContent,
}
Expand description

Types of reasons why a cookie may not be stored from a response.

Variants§

§

SecureOnly

The cookie had the “Secure” attribute but was not received over a secure connection.

§

SameSiteStrict

The cookie had the “SameSite=Strict” attribute but came from a cross-origin response. This includes navigation requests initiated by other origins.

§

SameSiteLax

The cookie had the “SameSite=Lax” attribute but came from a cross-origin response.

§

SameSiteUnspecifiedTreatedAsLax

The cookie didn’t specify a “SameSite” attribute and was defaulted to “SameSite=Lax” and broke the same rules specified in the SameSiteLax value.

§

SameSiteNoneInsecure

The cookie had the “SameSite=None” attribute but did not specify the “Secure” attribute, which is required in order to use “SameSite=None”.

§

UserPreferences

The cookie was not stored due to user preferences.

§

ThirdPartyPhaseout

The cookie was blocked due to third-party cookie phaseout.

§

ThirdPartyBlockedInFirstPartySet

The cookie was blocked by third-party cookie blocking between sites in the same First-Party Set.

§

SyntaxError

The syntax of the Set-Cookie header of the response was invalid.

§

SchemeNotSupported

The scheme of the connection is not allowed to store cookies.

§

OverwriteSecure

The cookie was not sent over a secure connection and would have overwritten a cookie with the Secure attribute.

§

InvalidDomain

The cookie’s domain attribute was invalid with regards to the current host url.

§

InvalidPrefix

The cookie used the “__Secure-” or “__Host-” prefix in its name and broke the additional rules applied to cookies with these prefixes as defined in https://tools.ietf.org/html/draft-west-cookie-prefixes-05

§

UnknownError

An unknown error was encountered when trying to store this cookie.

§

SchemefulSameSiteStrict

The cookie had the “SameSite=Strict” attribute but came from a response with the same registrable domain but a different scheme. This includes navigation requests initiated by other origins. This is the “Schemeful Same-Site” version of the blocked reason.

§

SchemefulSameSiteLax

The cookie had the “SameSite=Lax” attribute but came from a response with the same registrable domain but a different scheme. This is the “Schemeful Same-Site” version of the blocked reason.

§

SchemefulSameSiteUnspecifiedTreatedAsLax

The cookie didn’t specify a “SameSite” attribute and was defaulted to “SameSite=Lax” and broke the same rules specified in the SchemefulSameSiteLax value. This is the “Schemeful Same-Site” version of the blocked reason.

§

SamePartyFromCrossPartyContext

The cookie had the “SameParty” attribute but came from a cross-party response.

§

SamePartyConflictsWithOtherAttributes

The cookie had the “SameParty” attribute but did not specify the “Secure” attribute (which is required in order to use “SameParty”); or specified the “SameSite=Strict” attribute (which is forbidden when using “SameParty”).

§

NameValuePairExceedsMaxSize

The cookie’s name/value pair size exceeded the size limit defined in RFC6265bis.

§

DisallowedCharacter

The cookie contained a forbidden ASCII control character, or the tab character if it appears in the middle of the cookie name, value, an attribute name, or an attribute value.

§

NoCookieContent

Cookie contains no content or only whitespace.

Trait Implementations§

Source§

impl AsRef<str> for SetCookieBlockedReason

Source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for SetCookieBlockedReason

Source§

fn clone(&self) -> SetCookieBlockedReason

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 SetCookieBlockedReason

Source§

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

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

impl<'de> Deserialize<'de> for SetCookieBlockedReason

Source§

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

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

impl FromStr for SetCookieBlockedReason

Source§

type Err = String

The associated error which can be returned from parsing.
Source§

fn from_str( s: &str, ) -> Result<SetCookieBlockedReason, <SetCookieBlockedReason as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for SetCookieBlockedReason

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for SetCookieBlockedReason

Source§

fn eq(&self, other: &SetCookieBlockedReason) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for SetCookieBlockedReason

Source§

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

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for SetCookieBlockedReason

Source§

impl StructuralPartialEq for SetCookieBlockedReason

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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 T
where 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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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 more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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 T
where 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 T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T