[][src]Struct http_sig::VerifyingError

#[non_exhaustive]pub struct VerifyingError<Remnant> { /* fields omitted */ }

This error indicates that we failed to verify the request. As a result the request should be ignored.

Methods

impl<Remnant> VerifyingError<Remnant>[src]

pub fn into_remnant(self) -> Remnant[src]

For some request types, the verification process may be a destructive operation. This method can be used to access information that would otherwise be lost as a result of the failed verification.

Trait Implementations

impl<Remnant: Debug> Debug for VerifyingError<Remnant>[src]

impl<Remnant> Display for VerifyingError<Remnant>[src]

impl<Remnant: Debug> Error for VerifyingError<Remnant>[src]

Auto Trait Implementations

impl<Remnant> RefUnwindSafe for VerifyingError<Remnant> where
    Remnant: RefUnwindSafe

impl<Remnant> Send for VerifyingError<Remnant> where
    Remnant: Send

impl<Remnant> Sync for VerifyingError<Remnant> where
    Remnant: Sync

impl<Remnant> Unpin for VerifyingError<Remnant> where
    Remnant: Unpin

impl<Remnant> UnwindSafe for VerifyingError<Remnant> where
    Remnant: UnwindSafe

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

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.