pub struct Ch24(/* private fields */);Expand description
24-bit signed integer (-8_388_608 to 8_388_607) channel value
Implementations§
Trait Implementations§
Source§impl AddAssign for Ch24
impl AddAssign for Ch24
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl MulAssign for Ch24
impl MulAssign for Ch24
Source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
Performs the
*= operation. Read moreSource§impl Ord for Ch24
impl Ord for Ch24
Source§impl PartialOrd for Ch24
impl PartialOrd for Ch24
Source§impl SubAssign for Ch24
impl SubAssign for Ch24
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreimpl Copy for Ch24
impl Eq for Ch24
impl Pod for Ch24
impl StructuralPartialEq for Ch24
Auto Trait Implementations§
impl Freeze for Ch24
impl RefUnwindSafe for Ch24
impl Send for Ch24
impl Sync for Ch24
impl Unpin for Ch24
impl UnwindSafe for Ch24
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.