pub enum AudioCodingFormat {
UncompressedNativeEndian,
Adpcm,
Mp3,
UncompressedLittleEndian,
Nellymoser16,
Nellymoser8,
Nellymoser,
Speex,
}
Variants§
UncompressedNativeEndian
Adpcm
Mp3
UncompressedLittleEndian
Nellymoser16
Nellymoser8
Nellymoser
Speex
Trait Implementations§
Source§impl Clone for AudioCodingFormat
impl Clone for AudioCodingFormat
Source§fn clone(&self) -> AudioCodingFormat
fn clone(&self) -> AudioCodingFormat
Returns a copy 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 AudioCodingFormat
impl Debug for AudioCodingFormat
Source§impl<'de> Deserialize<'de> for AudioCodingFormat
impl<'de> Deserialize<'de> for AudioCodingFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for AudioCodingFormat
impl Hash for AudioCodingFormat
Source§impl Ord for AudioCodingFormat
impl Ord for AudioCodingFormat
Source§fn cmp(&self, other: &AudioCodingFormat) -> Ordering
fn cmp(&self, other: &AudioCodingFormat) -> 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 AudioCodingFormat
impl PartialEq for AudioCodingFormat
Source§impl PartialOrd for AudioCodingFormat
impl PartialOrd for AudioCodingFormat
Source§impl Serialize for AudioCodingFormat
impl Serialize for AudioCodingFormat
impl Copy for AudioCodingFormat
impl Eq for AudioCodingFormat
impl StructuralPartialEq for AudioCodingFormat
Auto Trait Implementations§
impl Freeze for AudioCodingFormat
impl RefUnwindSafe for AudioCodingFormat
impl Send for AudioCodingFormat
impl Sync for AudioCodingFormat
impl Unpin for AudioCodingFormat
impl UnwindSafe for AudioCodingFormat
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