pub struct Range4 {
pub min: u32,
pub max: u32,
pub step: u32,
}Expand description
Represents a range of 4-byte (u32) values.
Fields§
§min: u32Minimum value in the range.
max: u32Maximum value in the range.
step: u32Step size between values in the range.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Range4
impl RefUnwindSafe for Range4
impl Send for Range4
impl Sync for Range4
impl Unpin for Range4
impl UnwindSafe for Range4
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