pub(crate) struct Range {
pub(crate) min: i64,
pub(crate) max: i64,
pub(crate) step: NonZero<u64>,
}
Expand description
Range inclusive ends.
Fields§
§min: i64
§max: i64
§step: NonZero<u64>
Implementations§
Trait Implementations§
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