[][src]Struct work_tock_lib::grabber::LocalGrabber

pub struct LocalGrabber<'a, G, R, I> where
    G: Getter<'a, R>,
    I: Iterator<Item = R>,
    R: PartialEq<R> + Debug + Display
{ /* fields omitted */ }

Implementations

impl<'a, G, R, I> LocalGrabber<'a, G, R, I> where
    G: Getter<'a, R>,
    I: Iterator<Item = R>,
    R: PartialEq<R> + Debug + Display
[src]

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

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

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

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

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

pub fn done(self) -> Option<PathBuf>[src]

pub fn req(self) -> Result<PathBuf, ConfError>[src]

pub fn def<V>(self, v: V) -> PathBuf where
    PathBuf: From<V>, 
[src]

Auto Trait Implementations

impl<'a, G, R, I> RefUnwindSafe for LocalGrabber<'a, G, R, I> where
    G: RefUnwindSafe,
    I: RefUnwindSafe

impl<'a, G, R, I> Send for LocalGrabber<'a, G, R, I> where
    G: Sync,
    I: Send

impl<'a, G, R, I> Sync for LocalGrabber<'a, G, R, I> where
    G: Sync,
    I: Sync

impl<'a, G, R, I> Unpin for LocalGrabber<'a, G, R, I> where
    I: Unpin

impl<'a, G, R, I> UnwindSafe for LocalGrabber<'a, G, R, I> where
    G: RefUnwindSafe,
    I: 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.