Enum gotham::middleware::session::SessionError
source · [−]pub enum SessionError {
Backend(String),
Deserialize,
// some variants omitted
}
Expand description
The kind of failure which occurred trying to perform a session operation.
Variants
Backend(String)
The backend failed, and the included message describes the problem.
Deserialize
The session was unable to be deserialized.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SessionError
impl Send for SessionError
impl Sync for SessionError
impl Unpin for SessionError
impl UnwindSafe for SessionError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more