pub enum StoreAction {
Inserted,
ExpiredExisting,
UpdatedExisting,
}
Variants§
Inserted
The Cookie
was successfully added to the store
ExpiredExisting
The Cookie
successfully expired a Cookie
already in the store
UpdatedExisting
The Cookie
was added to the store, replacing an existing entry
Trait Implementations§
Source§impl Clone for StoreAction
impl Clone for StoreAction
Source§fn clone(&self) -> StoreAction
fn clone(&self) -> StoreAction
Returns a duplicate 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 StoreAction
impl Debug for StoreAction
Source§impl PartialEq for StoreAction
impl PartialEq for StoreAction
impl Eq for StoreAction
impl StructuralPartialEq for StoreAction
Auto Trait Implementations§
impl Freeze for StoreAction
impl RefUnwindSafe for StoreAction
impl Send for StoreAction
impl Sync for StoreAction
impl Unpin for StoreAction
impl UnwindSafe for StoreAction
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.