#[repr(u8)]pub enum OutFormatint {
Q15 = 0,
Q31 = 1,
FLOAT = 2,
_RESERVED_3 = 3,
}Variants§
Q15 = 0
Q15 16-bit fixed-point integer
Q31 = 1
Q31 32-bit fixed-point integer
FLOAT = 2
F32 32-bit floating-point format
_RESERVED_3 = 3
Implementations§
Source§impl OutFormatint
impl OutFormatint
Trait Implementations§
Source§impl Clone for OutFormatint
impl Clone for OutFormatint
Source§fn clone(&self) -> OutFormatint
fn clone(&self) -> OutFormatint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OutFormatint
impl Debug for OutFormatint
Source§impl From<OutFormatint> for u8
impl From<OutFormatint> for u8
Source§fn from(val: OutFormatint) -> u8
fn from(val: OutFormatint) -> u8
Converts to this type from the input type.
Source§impl From<u8> for OutFormatint
impl From<u8> for OutFormatint
Source§fn from(val: u8) -> OutFormatint
fn from(val: u8) -> OutFormatint
Converts to this type from the input type.
Source§impl Ord for OutFormatint
impl Ord for OutFormatint
Source§fn cmp(&self, other: &OutFormatint) -> Ordering
fn cmp(&self, other: &OutFormatint) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OutFormatint
impl PartialEq for OutFormatint
Source§impl PartialOrd for OutFormatint
impl PartialOrd for OutFormatint
impl Copy for OutFormatint
impl Eq for OutFormatint
impl StructuralPartialEq for OutFormatint
Auto Trait Implementations§
impl Freeze for OutFormatint
impl RefUnwindSafe for OutFormatint
impl Send for OutFormatint
impl Sync for OutFormatint
impl Unpin for OutFormatint
impl UnwindSafe for OutFormatint
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