pub enum RangeListItem {
Range(Range),
Value(Value),
}Expand description
An enum of items that appear in a RangeList: Range or a Value.
See Range and Value for additional details.
Variants§
Trait Implementations§
Source§impl Clone for RangeListItem
impl Clone for RangeListItem
Source§fn clone(&self) -> RangeListItem
fn clone(&self) -> RangeListItem
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 moreSource§impl Debug for RangeListItem
impl Debug for RangeListItem
Source§impl PartialEq for RangeListItem
impl PartialEq for RangeListItem
impl StructuralPartialEq for RangeListItem
Auto Trait Implementations§
impl Freeze for RangeListItem
impl RefUnwindSafe for RangeListItem
impl Send for RangeListItem
impl Sync for RangeListItem
impl Unpin for RangeListItem
impl UnwindSafe for RangeListItem
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