[][src]Struct ops::NamedChecker

pub struct NamedChecker<T: Checker> { /* fields omitted */ }

Associates a name with a Checker.

Implementations

impl<T: Checker> NamedChecker<T>[src]

pub fn new(name: &str, checker: T) -> Self[src]

Creates a new NamedChecker.

pub fn name(&self) -> &str[src]

The name of the checker.

pub fn checker(&self) -> &T[src]

The actual checker itself

Trait Implementations

impl<T: Checker> Debug for NamedChecker<T>[src]

impl<'_, T: Checker> Future for &'_ NamedChecker<T>[src]

type Output = CheckResponse

The type of value produced on completion.

Auto Trait Implementations

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

impl<T> Send for NamedChecker<T>

impl<T> Sync for NamedChecker<T>

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

impl<T> UnwindSafe for NamedChecker<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<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.