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
sourceimpl<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> Copy for Position<T>
impl<T> StructuralPartialEq for Position<T>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more