[][src]Trait http_sig::VerifyingExt

pub trait VerifyingExt {
    type Remnant;
    fn verify(
        self,
        config: &VerifyingConfig
    ) -> Result<(Self::Remnant, VerificationDetails), VerifyingError<Self::Remnant>>; }

Import this trait to get access to access the verify method on all types implementing ServerRequestLike.

Associated Types

type Remnant

For some request types, the verification process may be a destructive operation. This associated type can be used to return information that might otherwise be lost.

Loading content...

Required methods

fn verify(
    self,
    config: &VerifyingConfig
) -> Result<(Self::Remnant, VerificationDetails), VerifyingError<Self::Remnant>>

Verify the request using the given verification configuration.

Loading content...

Implementors

impl<T: ServerRequestLike> VerifyingExt for T[src]

type Remnant = T::Remnant

Loading content...