pub struct MinMax {
pub min: f32,
pub max: f32,
}Expand description
Represents a result of minimum and maximum values in a height map.
Fields§
§min: f32The minimum value.
max: f32The maximum value.
Trait Implementations§
impl Copy for MinMax
Auto Trait Implementations§
impl Freeze for MinMax
impl RefUnwindSafe for MinMax
impl Send for MinMax
impl Sync for MinMax
impl Unpin for MinMax
impl UnwindSafe for MinMax
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