pub struct Hsl {
pub h: f32,
pub s: f32,
pub l: f32,
pub a: f32,
}
Fields§
§h: f32
§s: f32
§l: f32
§a: f32
Trait Implementations§
Source§impl FromWasmAbi for Hsl
impl FromWasmAbi for Hsl
Source§impl IntoWasmAbi for Hsl
impl IntoWasmAbi for Hsl
Source§impl LongRefFromWasmAbi for Hsl
impl LongRefFromWasmAbi for Hsl
Source§impl OptionFromWasmAbi for Hsl
impl OptionFromWasmAbi for Hsl
Source§impl OptionIntoWasmAbi for Hsl
impl OptionIntoWasmAbi for Hsl
Source§impl RefFromWasmAbi for Hsl
impl RefFromWasmAbi for Hsl
Source§impl RefMutFromWasmAbi for Hsl
impl RefMutFromWasmAbi for Hsl
Source§impl TryFromJsValue for Hsl
impl TryFromJsValue for Hsl
Source§impl VectorFromWasmAbi for Hsl
impl VectorFromWasmAbi for Hsl
Source§impl VectorIntoWasmAbi for Hsl
impl VectorIntoWasmAbi for Hsl
impl StructuralPartialEq for Hsl
impl SupportsConstructor for Hsl
impl SupportsInstanceProperty for Hsl
impl SupportsStaticProperty for Hsl
Auto Trait Implementations§
impl Freeze for Hsl
impl RefUnwindSafe for Hsl
impl Send for Hsl
impl Sync for Hsl
impl Unpin for Hsl
impl UnwindSafe for Hsl
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
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.