snowfinch 0.2.1

Authentication and sessions for Rust tower/axum servers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Errors returned by [`snowfinch`](crate).
#[derive(Debug, thiserror::Error)]
pub enum Error {
    /// A hexadecimal value could not be decoded.
    #[error(transparent)]
    FromHex(#[from] const_hex::FromHexError),

    /// An error returned by a user-provided backend or store.
    #[error(transparent)]
    Other(Box<dyn std::error::Error + Send + Sync + 'static>),
}