Enum biscuit::Validation[][src]

pub enum Validation<T> {
    Ignored,
    Validate(T),
}

Defines whether a claim is validated or not

The generic type T is used as the “options” for validating claims and is specific to each claim being validated. Refer to crate::ValidationOptions for the specifics of each claim.

Variants

Ignored

This claim is not validated

Validate(T)

Validate this claim with type T. Refer to crate::ValidationOptions for the specifics of each claim.

Implementations

impl<T> Validation<T>[src]

pub fn map<U, F>(self, f: F) -> Validation<U> where
    F: FnOnce(T) -> U, 
[src]

Map the value to another validation requirement, similar to how .map works on iter()

Trait Implementations

impl<T: Clone> Clone for Validation<T>[src]

impl<T: Copy> Copy for Validation<T>[src]

impl<T: Debug> Debug for Validation<T>[src]

impl<T> Default for Validation<T>[src]

impl<T: Eq> Eq for Validation<T>[src]

impl<T: PartialEq> PartialEq<Validation<T>> for Validation<T>[src]

impl<T> StructuralEq for Validation<T>[src]

impl<T> StructuralPartialEq for Validation<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Validation<T> where
    T: RefUnwindSafe

impl<T> Send for Validation<T> where
    T: Send

impl<T> Sync for Validation<T> where
    T: Sync

impl<T> Unpin for Validation<T> where
    T: Unpin

impl<T> UnwindSafe for Validation<T> where
    T: 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<Q, K> Equivalent<K> for Q where
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.