pub enum G711Variant {
ALaw,
MuLaw,
}Expand description
G.711 codec variants
Variants§
ALaw
A-law (PCMA) - Used primarily in Europe
MuLaw
μ-law (PCMU) - Used primarily in North America and Japan
Trait Implementations§
Source§impl Clone for G711Variant
impl Clone for G711Variant
Source§fn clone(&self) -> G711Variant
fn clone(&self) -> G711Variant
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 G711Variant
impl Debug for G711Variant
Source§impl PartialEq for G711Variant
impl PartialEq for G711Variant
impl Copy for G711Variant
impl Eq for G711Variant
impl StructuralPartialEq for G711Variant
Auto Trait Implementations§
impl Freeze for G711Variant
impl RefUnwindSafe for G711Variant
impl Send for G711Variant
impl Sync for G711Variant
impl Unpin for G711Variant
impl UnwindSafe for G711Variant
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