pub enum AudioStreamType {
Background,
Media,
Interruption,
SystemAgent,
Communication,
Accessibility,
}
Variants§
Implementations§
Source§impl AudioStreamType
impl AudioStreamType
Sourcepub fn is_legacy(&self) -> bool
pub fn is_legacy(&self) -> bool
Legacy stream types are the subset of AudioStreamType values which correspond to values in |fuchsia.media.AudioRenderUsage|. FIDL tables |AudioSettings| and |AudioStreamSettings|, and FIDL methods |Set| and |Watch|, are limited to these stream types.
|fuchsia.media.AudioRenderUsage2| contains all the |AudioRenderUsage| values, and more. |AudioStreamType| is based on |AudioRenderUsage2|, and |AudioRenderUsage2| is used with tables |AudioSettings2| and |AudioStreamSettings2|, and with methods |Set2| and |Watch2|.
Trait Implementations§
Source§impl Clone for AudioStreamType
impl Clone for AudioStreamType
Source§fn clone(&self) -> AudioStreamType
fn clone(&self) -> AudioStreamType
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 AudioStreamType
impl Debug for AudioStreamType
Source§impl<'de> Deserialize<'de> for AudioStreamType
impl<'de> Deserialize<'de> for AudioStreamType
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 From<AudioRenderUsage> for AudioStreamType
impl From<AudioRenderUsage> for AudioStreamType
Source§fn from(usage: AudioRenderUsage) -> Self
fn from(usage: AudioRenderUsage) -> Self
Converts to this type from the input type.
Source§impl From<AudioStreamType> for AudioRenderUsage2
impl From<AudioStreamType> for AudioRenderUsage2
Source§fn from(usage: AudioStreamType) -> Self
fn from(usage: AudioStreamType) -> Self
Converts to this type from the input type.
Source§impl Hash for AudioStreamType
impl Hash for AudioStreamType
Source§impl PartialEq for AudioStreamType
impl PartialEq for AudioStreamType
Source§impl Serialize for AudioStreamType
impl Serialize for AudioStreamType
Source§impl TryFrom<AudioRenderUsage2> for AudioStreamType
impl TryFrom<AudioRenderUsage2> for AudioStreamType
Source§impl TryFrom<AudioStreamType> for AudioRenderUsage
impl TryFrom<AudioStreamType> for AudioRenderUsage
impl Copy for AudioStreamType
impl Eq for AudioStreamType
impl StructuralPartialEq for AudioStreamType
Auto Trait Implementations§
impl Freeze for AudioStreamType
impl RefUnwindSafe for AudioStreamType
impl Send for AudioStreamType
impl Sync for AudioStreamType
impl Unpin for AudioStreamType
impl UnwindSafe for AudioStreamType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> IntoAny for T
impl<T> IntoAny for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more