#[repr(u8)]pub enum MmcAudioStatus {
PlayInProgress = 17,
PlayPaused = 18,
PlayCompleted = 19,
PlayStopped = 20,
NoStatus = 21,
}Available on crate feature
mmc only.Expand description
The status of audio play operations
Variants§
Trait Implementations§
Source§impl Clone for MmcAudioStatus
impl Clone for MmcAudioStatus
Source§fn clone(&self) -> MmcAudioStatus
fn clone(&self) -> MmcAudioStatus
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 MmcAudioStatus
Source§impl Debug for MmcAudioStatus
impl Debug for MmcAudioStatus
Source§impl Default for MmcAudioStatus
impl Default for MmcAudioStatus
Source§fn default() -> MmcAudioStatus
fn default() -> MmcAudioStatus
Returns the “default value” for a type. Read more
impl Eq for MmcAudioStatus
Source§impl Hash for MmcAudioStatus
impl Hash for MmcAudioStatus
Source§impl Ord for MmcAudioStatus
impl Ord for MmcAudioStatus
Source§fn cmp(&self, other: &MmcAudioStatus) -> Ordering
fn cmp(&self, other: &MmcAudioStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MmcAudioStatus
impl PartialEq for MmcAudioStatus
Source§impl PartialOrd for MmcAudioStatus
impl PartialOrd for MmcAudioStatus
impl StructuralPartialEq for MmcAudioStatus
Source§impl TryFrom<u8> for MmcAudioStatus
impl TryFrom<u8> for MmcAudioStatus
Source§type Error = TryFromPrimitiveError<MmcAudioStatus>
type Error = TryFromPrimitiveError<MmcAudioStatus>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for MmcAudioStatus
impl TryFromPrimitive for MmcAudioStatus
const NAME: &'static str = "MmcAudioStatus"
type Primitive = u8
type Error = TryFromPrimitiveError<MmcAudioStatus>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
Auto Trait Implementations§
impl Freeze for MmcAudioStatus
impl RefUnwindSafe for MmcAudioStatus
impl Send for MmcAudioStatus
impl Sync for MmcAudioStatus
impl Unpin for MmcAudioStatus
impl UnsafeUnpin for MmcAudioStatus
impl UnwindSafe for MmcAudioStatus
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