Enum itsdangerous::BadTimedSignature[][src]

pub enum BadTimedSignature<'a> {
    SeparatorNotFound {
        separator: Separator,
    },
    SignatureMismatch {
        signature: &'a str,
        value: &'a str,
    },
    PayloadInvalid {
        value: &'a str,
        error: PayloadError,
    },
    TimestampMissing {
        value: &'a str,
    },
    TimestampInvalid {
        timestamp: &'a str,
    },
    TimestampExpired {
        timestamp: SystemTime,
        max_age: Duration,
        value: &'a str,
    },
}

Errors that can occur while unsigning a “signed value” using the timed signer.

Variants

SeparatorNotFound

A string was provided to unsign, but it did not contain the expected separator.

Fields of SeparatorNotFound

separator: Separator
SignatureMismatch

The signature did not match what we expected it to be.

Fields of SignatureMismatch

signature: &'a strvalue: &'a str
PayloadInvalid

The payload is invalid, e.g. it cannot be parsed.

Fields of PayloadInvalid

value: &'a strerror: PayloadError
TimestampMissing

The timestamp is missing, but the value was signed with a correct secret key + salt.

Fields of TimestampMissing

value: &'a str
TimestampInvalid

The timestamp was present and signed, but we weren’t able to parse it back to a SystemTime.

Fields of TimestampInvalid

timestamp: &'a str
TimestampExpired

The timestamp expired - meaning that it was more than max_age ago.

Fields of TimestampExpired

timestamp: SystemTimemax_age: Durationvalue: &'a str

Trait Implementations

impl<'a> Debug for BadTimedSignature<'a>[src]

impl<'a> Display for BadTimedSignature<'a>[src]

impl<'a> Error for BadTimedSignature<'a>[src]

impl<'a> From<BadSignature<'a>> for BadTimedSignature<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for BadTimedSignature<'a>

impl<'a> Send for BadTimedSignature<'a>

impl<'a> Sync for BadTimedSignature<'a>

impl<'a> Unpin for BadTimedSignature<'a>

impl<'a> !UnwindSafe for BadTimedSignature<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.