pub enum Position<T> {
First(T),
Middle(T),
Last(T),
Only(T),
}
Expand description
A value yielded by WithPosition
.
Indicates the position of this element in the iterator results.
See .with_position()
for more information.
Variants§
First(T)
This is the first element.
Middle(T)
This is neither the first nor the last element.
Last(T)
This is the last element.
Only(T)
This is the only element.
Implementations§
Source§impl<T> Position<T>
impl<T> Position<T>
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Return the inner value.
Trait Implementations§
impl<T> Copy for Position<T>where
T: Copy,
impl<T> StructuralPartialEq for Position<T>
Auto Trait Implementations§
impl<T> Freeze for Position<T>where
T: Freeze,
impl<T> RefUnwindSafe for Position<T>where
T: RefUnwindSafe,
impl<T> Send for Position<T>where
T: Send,
impl<T> Sync for Position<T>where
T: Sync,
impl<T> Unpin for Position<T>where
T: Unpin,
impl<T> UnwindSafe for Position<T>where
T: 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> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
Source§impl<Target, Original> VectorizedInto<Target> for Originalwhere
Target: VectorizedFrom<Original>,
impl<Target, Original> VectorizedInto<Target> for Originalwhere
Target: VectorizedFrom<Original>,
Source§fn vectorized_into(self) -> Target
fn vectorized_into(self) -> Target
Performs the conversion.