pub trait VerifyingExt {
    type Remnant;

    // Required method
    fn verify(
        self,
        config: &VerifyingConfig
    ) -> Result<(Self::Remnant, VerificationDetails), VerifyingError<Self::Remnant>>;
}
Expand description

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

Required Associated Types§

source

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.

Required Methods§

source

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

Verify the request using the given verification configuration.

Implementors§