pub enum EveryRangeKind {
Included,
Excluded,
}
Expand description
EveryRangeKind
can be used to distinguish original input
ranges from generates ranges.
Variants§
Included
Included
ranges are the ones produces by the inner Iterator
.
Excluded
Excluded ranges are the ones generated dynamically by EveryRangeIter
.
Trait Implementations§
Source§impl Clone for EveryRangeKind
impl Clone for EveryRangeKind
Source§fn clone(&self) -> EveryRangeKind
fn clone(&self) -> EveryRangeKind
Returns a copy 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 moreSource§impl Debug for EveryRangeKind
impl Debug for EveryRangeKind
Source§impl PartialEq for EveryRangeKind
impl PartialEq for EveryRangeKind
impl Copy for EveryRangeKind
impl StructuralPartialEq for EveryRangeKind
Auto Trait Implementations§
impl Freeze for EveryRangeKind
impl RefUnwindSafe for EveryRangeKind
impl Send for EveryRangeKind
impl Sync for EveryRangeKind
impl Unpin for EveryRangeKind
impl UnwindSafe for EveryRangeKind
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