pub enum IteratorPosition {
Hub(Option<u16>),
SimpleSet(Option<SetIteratorPostion>),
SimpleMap(Option<String>),
}Variants§
Implementations§
Source§impl IteratorPosition
impl IteratorPosition
pub fn into_hub(self) -> Option<u16>
pub fn into_simple_map(self) -> Option<String>
pub fn into_simple_set(self) -> Option<SetIteratorPostion>
Trait Implementations§
Source§impl Clone for IteratorPosition
impl Clone for IteratorPosition
Source§fn clone(&self) -> IteratorPosition
fn clone(&self) -> IteratorPosition
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IteratorPosition
impl RefUnwindSafe for IteratorPosition
impl Send for IteratorPosition
impl Sync for IteratorPosition
impl Unpin for IteratorPosition
impl UnwindSafe for IteratorPosition
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 more