pub struct Array<I, P, const LEN: usize> { /* private fields */ }
Expand description
Array
combinator.
Trait Implementations§
Auto Trait Implementations§
impl<I, P, const LEN: usize> Freeze for Array<I, P, LEN>where
P: Freeze,
impl<I, P, const LEN: usize> RefUnwindSafe for Array<I, P, LEN>where
P: RefUnwindSafe,
impl<I, P, const LEN: usize> Send for Array<I, P, LEN>where
P: Send,
impl<I, P, const LEN: usize> Sync for Array<I, P, LEN>where
P: Sync,
impl<I, P, const LEN: usize> Unpin for Array<I, P, LEN>where
P: Unpin,
impl<I, P, const LEN: usize> UnwindSafe for Array<I, P, LEN>where
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
].