pub enum AudioRuntimePhase {
Disabled,
Initializing,
RunningFullDuplex,
RunningInputOnly,
Degraded,
Failed,
}Expand description
Audio runtime phase as observed by browser dev mode.
Variants§
Trait Implementations§
Source§impl Clone for AudioRuntimePhase
impl Clone for AudioRuntimePhase
Source§fn clone(&self) -> AudioRuntimePhase
fn clone(&self) -> AudioRuntimePhase
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 AudioRuntimePhase
impl Debug for AudioRuntimePhase
Source§impl<'de> Deserialize<'de> for AudioRuntimePhase
impl<'de> Deserialize<'de> for AudioRuntimePhase
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 PartialEq for AudioRuntimePhase
impl PartialEq for AudioRuntimePhase
Source§impl Serialize for AudioRuntimePhase
impl Serialize for AudioRuntimePhase
impl Copy for AudioRuntimePhase
impl Eq for AudioRuntimePhase
impl StructuralPartialEq for AudioRuntimePhase
Auto Trait Implementations§
impl Freeze for AudioRuntimePhase
impl RefUnwindSafe for AudioRuntimePhase
impl Send for AudioRuntimePhase
impl Sync for AudioRuntimePhase
impl Unpin for AudioRuntimePhase
impl UnwindSafe for AudioRuntimePhase
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