pub struct FacetMap<I, Q, P>(/* private fields */);
Expand description
FacetMap
combinator.
Trait Implementations§
Auto Trait Implementations§
impl<I, Q, P> RefUnwindSafe for FacetMap<I, Q, P>where
P: RefUnwindSafe,
Q: 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
P: UnwindSafe,
Q: 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<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
].