[][src]Struct work_tock_lib::grabber::MultiGrabber

pub struct MultiGrabber<'a, G, R> where
    G: Getter<'a, R>,
    R: PartialEq<R> + Debug + Display
{ /* fields omitted */ }

Implementations

impl<'a, G, R> MultiGrabber<'a, G, R> where
    G: Getter<'a, R>,
    R: PartialEq<R> + Debug + Display
[src]

pub fn new(g: &'a G) -> MultiGrabber<'a, G, R>[src]

pub fn op<S>(self, s: S, f: Filter) -> MultiGrabber<'a, G, R> where
    S: AsRef<str>, 
[src]

pub fn conf<S>(self, s: S) -> MultiGrabber<'a, G, R> where
    S: AsRef<str>, 
[src]

pub fn env<S>(self, s: S) -> MultiGrabber<'a, G, R> where
    S: AsRef<str>, 
[src]

pub fn arg<S>(self, s: S) -> MultiGrabber<'a, G, R> where
    S: AsRef<str>, 
[src]

pub fn done(self) -> Option<<G as Getter<'a, R>>::Iter>[src]

pub fn req(self) -> Result<<G as Getter<'a, R>>::Iter, ConfError>[src]

Auto Trait Implementations

impl<'a, G, R> RefUnwindSafe for MultiGrabber<'a, G, R> where
    G: RefUnwindSafe,
    <G as Getter<'a, R>>::Iter: RefUnwindSafe

impl<'a, G, R> Send for MultiGrabber<'a, G, R> where
    G: Sync,
    <G as Getter<'a, R>>::Iter: Send

impl<'a, G, R> Sync for MultiGrabber<'a, G, R> where
    G: Sync,
    <G as Getter<'a, R>>::Iter: Sync

impl<'a, G, R> Unpin for MultiGrabber<'a, G, R> where
    <G as Getter<'a, R>>::Iter: Unpin

impl<'a, G, R> UnwindSafe for MultiGrabber<'a, G, R> where
    G: RefUnwindSafe,
    <G as Getter<'a, R>>::Iter: 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.