pub enum CookieOutcome {
Issued,
ValidatedOk,
ValidatedMismatch,
}Expand description
Outcome of a stateless-cookie validation.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CookieOutcome
impl Clone for CookieOutcome
Source§fn clone(&self) -> CookieOutcome
fn clone(&self) -> CookieOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CookieOutcome
Source§impl Debug for CookieOutcome
impl Debug for CookieOutcome
impl Eq for CookieOutcome
Source§impl Hash for CookieOutcome
impl Hash for CookieOutcome
Source§impl PartialEq for CookieOutcome
impl PartialEq for CookieOutcome
Source§fn eq(&self, other: &CookieOutcome) -> bool
fn eq(&self, other: &CookieOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CookieOutcome
Auto Trait Implementations§
impl Freeze for CookieOutcome
impl RefUnwindSafe for CookieOutcome
impl Send for CookieOutcome
impl Sync for CookieOutcome
impl Unpin for CookieOutcome
impl UnsafeUnpin for CookieOutcome
impl UnwindSafe for CookieOutcome
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