pub struct HslInt {
pub h: u16,
pub s: u8,
pub l: u8,
}
Expand description
Integer representation of CMYK color space.
h
is a 16
between 0 and 360, and s
and l
are a u8
between 0 and 255.
Fields§
§h: u16
§s: u8
§l: u8
Trait Implementations§
impl StructuralPartialEq for HslInt
Auto Trait Implementations§
impl Freeze for HslInt
impl RefUnwindSafe for HslInt
impl Send for HslInt
impl Sync for HslInt
impl Unpin for HslInt
impl UnwindSafe for HslInt
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