pub struct Ch32(/* private fields */);Expand description
32-bit float (0 to 1) channel value
Implementations§
Trait Implementations§
Source§impl AddAssign for Ch32
impl AddAssign for Ch32
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl MulAssign for Ch32
impl MulAssign for Ch32
Source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
Performs the
*= operation. Read moreSource§impl Ord for Ch32
impl Ord for Ch32
Source§impl PartialOrd for Ch32
impl PartialOrd for Ch32
Source§impl SubAssign for Ch32
impl SubAssign for Ch32
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreimpl Copy for Ch32
impl Eq for Ch32
impl Pod for Ch32
Auto Trait Implementations§
impl Freeze for Ch32
impl RefUnwindSafe for Ch32
impl Send for Ch32
impl Sync for Ch32
impl Unpin for Ch32
impl UnwindSafe for Ch32
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.