pub enum AudioTransportState {
Stopped,
Playing,
Recording,
Paused,
Looping,
}Variants§
Trait Implementations§
Source§impl Clone for AudioTransportState
impl Clone for AudioTransportState
Source§fn clone(&self) -> AudioTransportState
fn clone(&self) -> AudioTransportState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AudioTransportState
Source§impl Debug for AudioTransportState
impl Debug for AudioTransportState
Source§impl<'de> Deserialize<'de> for AudioTransportState
impl<'de> Deserialize<'de> for AudioTransportState
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
impl Eq for AudioTransportState
Source§impl PartialEq for AudioTransportState
impl PartialEq for AudioTransportState
Source§fn eq(&self, other: &AudioTransportState) -> bool
fn eq(&self, other: &AudioTransportState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AudioTransportState
impl Serialize for AudioTransportState
impl StructuralPartialEq for AudioTransportState
Auto Trait Implementations§
impl Freeze for AudioTransportState
impl RefUnwindSafe for AudioTransportState
impl Send for AudioTransportState
impl Sync for AudioTransportState
impl Unpin for AudioTransportState
impl UnsafeUnpin for AudioTransportState
impl UnwindSafe for AudioTransportState
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