Enum gotham::middleware::session::SessionError [] [src]

pub enum SessionError {
    Backend(String),
    Deserialize,
    // some variants omitted
}

The kind of failure which occurred trying to perform a session operation.

Variants

The backend failed, and the included message describes the problem.

The session was unable to be deserialized.

Trait Implementations

impl Debug for SessionError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SessionError

impl Sync for SessionError