Enum biscuit_auth::error::Token
source · pub enum Token {
InternalError,
Format(Format),
AppendOnSealed,
AlreadySealed,
FailedLogic(Logic),
Language(LanguageError),
RunLimit(RunLimit),
ConversionError(String),
Base64(Base64Error),
}Expand description
the global error type for Biscuit
Variants§
InternalError
Format(Format)
AppendOnSealed
AlreadySealed
FailedLogic(Logic)
Language(LanguageError)
RunLimit(RunLimit)
ConversionError(String)
Base64(Base64Error)
Trait Implementations§
source§impl Error for Token
impl Error for Token
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl From<DecodeError> for Token
impl From<DecodeError> for Token
source§fn from(e: DecodeError) -> Self
fn from(e: DecodeError) -> Self
Converts to this type from the input type.
source§impl From<Infallible> for Token
impl From<Infallible> for Token
source§fn from(_: Infallible) -> Self
fn from(_: Infallible) -> Self
Converts to this type from the input type.
source§impl From<LanguageError> for Token
impl From<LanguageError> for Token
source§fn from(e: LanguageError) -> Self
fn from(e: LanguageError) -> Self
Converts to this type from the input type.