pub struct Hsv {
pub h: f32,
pub s: f32,
pub v: f32,
}Expand description
HSV (Hue, Saturation, Value) color representation
Fields§
§h: f32§s: f32§v: f32Trait Implementations§
impl StructuralPartialEq for Hsv
Auto Trait Implementations§
impl Freeze for Hsv
impl RefUnwindSafe for Hsv
impl Send for Hsv
impl Sync for Hsv
impl Unpin for Hsv
impl UnsafeUnpin for Hsv
impl UnwindSafe for Hsv
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