pub enum RailsCookieError {
Config,
CookieJar,
CookieRetrieval,
DecryptorCreation,
Decryption,
CookieParse,
}
Expand description
Represents different errors that can occur during cookie retrieval.
Variants§
Config
Error retrieving CookieConfig
CookieJar
Error retrieving cookie jar
CookieRetrieval
Error retrieving cookie
DecryptorCreation
Error creating cookie decryptor
Decryption
Error decrypting cookie
CookieParse
Error parsing decrypted cookie
Trait Implementations§
Source§impl Debug for RailsCookieError
impl Debug for RailsCookieError
Source§impl Display for RailsCookieError
impl Display for RailsCookieError
Source§impl Error for RailsCookieError
impl Error for RailsCookieError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for RailsCookieError
impl RefUnwindSafe for RailsCookieError
impl Send for RailsCookieError
impl Sync for RailsCookieError
impl Unpin for RailsCookieError
impl UnwindSafe for RailsCookieError
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