pub struct FacetMap<I, Q, P>(/* private fields */);Expand description
FacetMap combinator.
Trait Implementations§
Auto Trait Implementations§
impl<I, Q, P> Freeze for FacetMap<I, Q, P>
impl<I, Q, P> RefUnwindSafe for FacetMap<I, Q, P>where
Q: RefUnwindSafe,
P: RefUnwindSafe,
impl<I, Q, P> Send for FacetMap<I, Q, P>
impl<I, Q, P> Sync for FacetMap<I, Q, P>
impl<I, Q, P> Unpin for FacetMap<I, Q, P>
impl<I, Q, P> UnwindSafe for FacetMap<I, Q, P>where
Q: UnwindSafe,
P: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<I, T> OperatorExt<I> for Twhere
T: Operator<I>,
impl<I, T> OperatorExt<I> for Twhere
T: Operator<I>,
Source§fn then<P2>(self, other: P2) -> Then<I, Self, P2>
fn then<P2>(self, other: P2) -> Then<I, Self, P2>
Combine with another operator that uses
Self::Output as input type. Read moreSource§fn facet<P2>(self, other: P2) -> Facet<I, Self, P2>
fn facet<P2>(self, other: P2) -> Facet<I, Self, P2>
Combine with another operator with the same input type. Read more
Source§fn map<O, F>(self, f: F) -> Then<I, Self, Map<F>>
fn map<O, F>(self, f: F) -> Then<I, Self, Map<F>>
Map the output after performing the operator.
Source§fn boxed<'a>(self) -> BoxOperator<'a, I, Self::Output>
fn boxed<'a>(self) -> BoxOperator<'a, I, Self::Output>
Convert into a
BoxOperator.Source§fn boxed_local<'a>(self) -> LocalBoxOperator<'a, I, Self::Output>where
Self: Sized + 'a,
fn boxed_local<'a>(self) -> LocalBoxOperator<'a, I, Self::Output>where
Self: Sized + 'a,
Convert into a
LocalBoxOperator.Source§fn into_async_operator(self) -> Next<Self>where
Self: Sized,
fn into_async_operator(self) -> Next<Self>where
Self: Sized,
Convert into a [
AsyncOperator].