pub struct Range1 {
pub min: u8,
pub max: u8,
pub step: u8,
}Expand description
Represents a range of 1-byte (u8) values.
Fields§
§min: u8Minimum value in the range.
max: u8Maximum value in the range.
step: u8Step size between values in the range.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Range1
impl RefUnwindSafe for Range1
impl Send for Range1
impl Sync for Range1
impl Unpin for Range1
impl UnwindSafe for Range1
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