#[repr(u32)]pub enum AVAudioServiceType {
AV_AUDIO_SERVICE_TYPE_MAIN = 0,
AV_AUDIO_SERVICE_TYPE_EFFECTS = 1,
AV_AUDIO_SERVICE_TYPE_VISUALLY_IMPAIRED = 2,
AV_AUDIO_SERVICE_TYPE_HEARING_IMPAIRED = 3,
AV_AUDIO_SERVICE_TYPE_DIALOGUE = 4,
AV_AUDIO_SERVICE_TYPE_COMMENTARY = 5,
AV_AUDIO_SERVICE_TYPE_EMERGENCY = 6,
AV_AUDIO_SERVICE_TYPE_VOICE_OVER = 7,
AV_AUDIO_SERVICE_TYPE_KARAOKE = 8,
AV_AUDIO_SERVICE_TYPE_NB = 9,
}
Variants§
AV_AUDIO_SERVICE_TYPE_MAIN = 0
AV_AUDIO_SERVICE_TYPE_EFFECTS = 1
AV_AUDIO_SERVICE_TYPE_VISUALLY_IMPAIRED = 2
AV_AUDIO_SERVICE_TYPE_HEARING_IMPAIRED = 3
AV_AUDIO_SERVICE_TYPE_DIALOGUE = 4
AV_AUDIO_SERVICE_TYPE_COMMENTARY = 5
AV_AUDIO_SERVICE_TYPE_EMERGENCY = 6
AV_AUDIO_SERVICE_TYPE_VOICE_OVER = 7
AV_AUDIO_SERVICE_TYPE_KARAOKE = 8
AV_AUDIO_SERVICE_TYPE_NB = 9
Trait Implementations§
Source§impl Clone for AVAudioServiceType
impl Clone for AVAudioServiceType
Source§fn clone(&self) -> AVAudioServiceType
fn clone(&self) -> AVAudioServiceType
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 AVAudioServiceType
impl Debug for AVAudioServiceType
Source§impl Hash for AVAudioServiceType
impl Hash for AVAudioServiceType
Source§impl PartialEq for AVAudioServiceType
impl PartialEq for AVAudioServiceType
impl Copy for AVAudioServiceType
impl Eq for AVAudioServiceType
impl StructuralPartialEq for AVAudioServiceType
Auto Trait Implementations§
impl Freeze for AVAudioServiceType
impl RefUnwindSafe for AVAudioServiceType
impl Send for AVAudioServiceType
impl Sync for AVAudioServiceType
impl Unpin for AVAudioServiceType
impl UnwindSafe for AVAudioServiceType
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