FetchBool

Trait FetchBool 

Source
pub trait FetchBool {
    type Fetch: for<'a> Fetch<'a, Output = bool>;

    // Required method
    fn fetch(self) -> Self::Fetch;
}

Required Associated Types§

Source

type Fetch: for<'a> Fetch<'a, Output = bool>

Required Methods§

Source

fn fetch(self) -> Self::Fetch

Implementors§

Source§

impl<F: Filter> FetchBool for Is<F>

Source§

impl<F: for<'a> Fetch<'a, Output = bool>> FetchBool for F

Source§

type Fetch = F