pub enum Range {
Closed {
rhs: i64,
lhs: i64,
},
From {
lhs: i64,
},
To {
rhs: i64,
},
}Variants§
Trait Implementations§
Source§impl AsVariantMut<Range> for ValueEnum
impl AsVariantMut<Range> for ValueEnum
fn as_variant_mut(&mut self) -> Option<&mut Range>
Source§impl IntoVariant<Range> for ValueEnum
impl IntoVariant<Range> for ValueEnum
impl StructuralPartialEq for Range
Auto Trait Implementations§
impl Freeze for Range
impl RefUnwindSafe for Range
impl Send for Range
impl Sync for Range
impl Unpin for Range
impl UnwindSafe for Range
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