Struct decrypt_cookies::chromium::DecryptedCookies
source · pub struct DecryptedCookies {Show 18 fields
pub creation_utc: DateTime<Utc>,
pub host_key: String,
pub top_frame_site_key: String,
pub name: String,
pub value: String,
pub decrypted_value: Option<String>,
pub path: String,
pub expires_utc: DateTime<Utc>,
pub is_secure: bool,
pub is_httponly: bool,
pub last_access_utc: DateTime<Utc>,
pub has_expires: bool,
pub is_persistent: bool,
pub priority: i32,
pub samesite: i32,
pub source_scheme: i32,
pub source_port: i32,
pub last_update_utc: DateTime<Utc>,
}
Fields§
§creation_utc: DateTime<Utc>
§host_key: String
§top_frame_site_key: String
§name: String
§value: String
§decrypted_value: Option<String>
§path: String
§expires_utc: DateTime<Utc>
§is_secure: bool
§is_httponly: bool
§last_access_utc: DateTime<Utc>
§has_expires: bool
§is_persistent: bool
§priority: i32
§samesite: i32
§source_scheme: i32
§source_port: i32
§last_update_utc: DateTime<Utc>
Implementations§
source§impl DecryptedCookies
impl DecryptedCookies
pub fn set_encrypted_value(&mut self, encrypted_value: String)
Trait Implementations§
source§impl Clone for DecryptedCookies
impl Clone for DecryptedCookies
source§fn clone(&self) -> DecryptedCookies
fn clone(&self) -> DecryptedCookies
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 CookiesInfo for DecryptedCookies
impl CookiesInfo for DecryptedCookies
source§impl Debug for DecryptedCookies
impl Debug for DecryptedCookies
source§impl PartialEq for DecryptedCookies
impl PartialEq for DecryptedCookies
source§fn eq(&self, other: &DecryptedCookies) -> bool
fn eq(&self, other: &DecryptedCookies) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for DecryptedCookies
impl StructuralPartialEq for DecryptedCookies
Auto Trait Implementations§
impl Freeze for DecryptedCookies
impl RefUnwindSafe for DecryptedCookies
impl Send for DecryptedCookies
impl Sync for DecryptedCookies
impl Unpin for DecryptedCookies
impl UnwindSafe for DecryptedCookies
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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 more