pub enum CodingFormat {
MuLawLog,
ALawLog,
Cvsd,
Transparent,
LinearPcm,
Msbc,
Lc3,
G729a,
VendorSpecific,
Unrecognized(u8),
}
Expand description
Coding Format as defined by the Assigned Numbers Document. Section 2.11. Referenced in the Core Spec 5.3, Volume 4, Part E, Section 7 as well as various other profile specifications.
Variants§
Trait Implementations§
Source§impl Clone for CodingFormat
impl Clone for CodingFormat
Source§fn clone(&self) -> CodingFormat
fn clone(&self) -> CodingFormat
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 CodingFormat
impl Debug for CodingFormat
Source§impl Display for CodingFormat
impl Display for CodingFormat
Source§impl From<CodingFormat> for u8
impl From<CodingFormat> for u8
Source§fn from(value: CodingFormat) -> Self
fn from(value: CodingFormat) -> Self
Converts to this type from the input type.
Source§impl From<u8> for CodingFormat
impl From<u8> for CodingFormat
Source§impl Hash for CodingFormat
impl Hash for CodingFormat
Source§impl PartialEq for CodingFormat
impl PartialEq for CodingFormat
impl Copy for CodingFormat
impl Eq for CodingFormat
impl StructuralPartialEq for CodingFormat
Auto Trait Implementations§
impl Freeze for CodingFormat
impl RefUnwindSafe for CodingFormat
impl Send for CodingFormat
impl Sync for CodingFormat
impl Unpin for CodingFormat
impl UnwindSafe for CodingFormat
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