[−][src]Struct work_tock_lib::convert::Holder
Implementations
impl<'a, A, RA, B, RB> Holder<'a, A, B, RA, RB> where
A: Getter<'a, RA>,
B: Getter<'a, RB>,
RA: From<RB> + Debug + PartialEq<RA> + Display,
RB: Debug + PartialEq<RB> + Display, [src]
A: Getter<'a, RA>,
B: Getter<'a, RB>,
RA: From<RB> + Debug + PartialEq<RA> + Display,
RB: Debug + PartialEq<RB> + Display,
Trait Implementations
impl<'a, A, B, R, RB> Debug for Holder<'a, A, B, R, RB> where
A: Debug,
B: Debug,
R: Debug,
RB: Debug, [src]
A: Debug,
B: Debug,
R: Debug,
RB: Debug,
impl<'a, A, RA, B, RB> Getter<'a, RA> for Holder<'a, A, B, RA, RB> where
A: Getter<'a, RA>,
B: Getter<'a, RB>,
RA: PartialEq<RA> + Debug + Display + From<RB>,
RB: PartialEq<RB> + Debug + Display,
<A as Getter<'a, RA>>::Iter: Iterator,
<B as Getter<'a, RB>>::Iter: Iterator,
<<A as Getter<'a, RA>>::Iter as Iterator>::Item == RA,
<<B as Getter<'a, RB>>::Iter as Iterator>::Item == RB, [src]
A: Getter<'a, RA>,
B: Getter<'a, RB>,
RA: PartialEq<RA> + Debug + Display + From<RB>,
RB: PartialEq<RB> + Debug + Display,
<A as Getter<'a, RA>>::Iter: Iterator,
<B as Getter<'a, RB>>::Iter: Iterator,
<<A as Getter<'a, RA>>::Iter as Iterator>::Item == RA,
<<B as Getter<'a, RB>>::Iter as Iterator>::Item == RB,
type Iter = OrIter<<A as Getter<'a, RA>>::Iter, <B as Getter<'a, RB>>::Iter>
fn bool_flag<S>(&self, s: S, f: Filter) -> bool where
S: AsRef<str>, [src]
S: AsRef<str>,
fn value<S>(&self, s: S, f: Filter) -> Option<RA> where
S: AsRef<str>, [src]
S: AsRef<str>,
fn values<S>(
&self,
s: S,
f: Filter
) -> Option<OrIter<<A as Getter<'a, RA>>::Iter, <B as Getter<'a, RB>>::Iter>> where
S: AsRef<str>, [src]
&self,
s: S,
f: Filter
) -> Option<OrIter<<A as Getter<'a, RA>>::Iter, <B as Getter<'a, RB>>::Iter>> where
S: AsRef<str>,
fn local_value<S>(&self, s: S, f: Filter) -> Option<PathBuf> where
S: AsRef<str>, [src]
S: AsRef<str>,
fn sub<S>(&self, s: S, f: Filter) -> bool where
S: AsRef<str>, [src]
S: AsRef<str>,
fn wrap<R2, F>(self, f: F) -> Wrapper<Self, F, R> where
F: Fn(R) -> R2, [src]
F: Fn(R) -> R2,
fn hold<B, RB>(self, b: B) -> Holder<'a, Self, B, R, RB> where
B: Getter<'a, RB>,
R: From<RB>,
RB: PartialEq<RB> + Debug + Display,
<B as Getter<'a, RB>>::Iter: Iterator,
<<B as Getter<'a, RB>>::Iter as Iterator>::Item == RB, [src]
B: Getter<'a, RB>,
R: From<RB>,
RB: PartialEq<RB> + Debug + Display,
<B as Getter<'a, RB>>::Iter: Iterator,
<<B as Getter<'a, RB>>::Iter as Iterator>::Item == RB,
fn grab(&'a self) -> Grabber<'a, Self, R, Self::Iter>[src]
fn grab_local(&'a self) -> LocalGrabber<'a, Self, R, Self::Iter>[src]
fn grab_multi(&'a self) -> MultiGrabber<'a, Self, R>[src]
Auto Trait Implementations
impl<'a, A, B, R, RB> RefUnwindSafe for Holder<'a, A, B, R, RB> where
A: RefUnwindSafe,
B: RefUnwindSafe,
R: RefUnwindSafe,
RB: RefUnwindSafe,
A: RefUnwindSafe,
B: RefUnwindSafe,
R: RefUnwindSafe,
RB: RefUnwindSafe,
impl<'a, A, B, R, RB> Send for Holder<'a, A, B, R, RB> where
A: Send,
B: Send,
R: Sync,
RB: Send,
A: Send,
B: Send,
R: Sync,
RB: Send,
impl<'a, A, B, R, RB> Sync for Holder<'a, A, B, R, RB> where
A: Sync,
B: Sync,
R: Sync,
RB: Sync,
A: Sync,
B: Sync,
R: Sync,
RB: Sync,
impl<'a, A, B, R, RB> Unpin for Holder<'a, A, B, R, RB> where
A: Unpin,
B: Unpin,
RB: Unpin,
A: Unpin,
B: Unpin,
RB: Unpin,
impl<'a, A, B, R, RB> UnwindSafe for Holder<'a, A, B, R, RB> where
A: UnwindSafe,
B: UnwindSafe,
R: RefUnwindSafe,
RB: UnwindSafe,
A: UnwindSafe,
B: UnwindSafe,
R: RefUnwindSafe,
RB: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,