#[repr(C)]pub enum CodecEncryptionMode {
PerChannel = 0,
ForcedOff = 1,
ForcedOn = 2,
}Variants§
PerChannel = 0
voice data encryption decided per channel
ForcedOff = 1
voice data encryption disabled
ForcedOn = 2
voice data encryption enabled
Trait Implementations§
Source§impl Clone for CodecEncryptionMode
impl Clone for CodecEncryptionMode
Source§fn clone(&self) -> CodecEncryptionMode
fn clone(&self) -> CodecEncryptionMode
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 CodecEncryptionMode
impl Debug for CodecEncryptionMode
Source§impl PartialEq for CodecEncryptionMode
impl PartialEq for CodecEncryptionMode
impl Copy for CodecEncryptionMode
impl Eq for CodecEncryptionMode
impl StructuralPartialEq for CodecEncryptionMode
Auto Trait Implementations§
impl Freeze for CodecEncryptionMode
impl RefUnwindSafe for CodecEncryptionMode
impl Send for CodecEncryptionMode
impl Sync for CodecEncryptionMode
impl Unpin for CodecEncryptionMode
impl UnwindSafe for CodecEncryptionMode
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