#[non_exhaustive]#[repr(u32)]pub enum AudioPlayback_Status {
AudioPlayback_Undefined = 0,
AudioPlayback_Playing = 1,
AudioPlayback_Paused = 2,
AudioPlayback_Idle = 3,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AudioPlayback_Undefined = 0
AudioPlayback_Playing = 1
AudioPlayback_Paused = 2
AudioPlayback_Idle = 3
Trait Implementations§
Source§impl Clone for AudioPlayback_Status
impl Clone for AudioPlayback_Status
Source§fn clone(&self) -> AudioPlayback_Status
fn clone(&self) -> AudioPlayback_Status
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 AudioPlayback_Status
Source§impl Debug for AudioPlayback_Status
impl Debug for AudioPlayback_Status
impl Eq for AudioPlayback_Status
Source§impl Hash for AudioPlayback_Status
impl Hash for AudioPlayback_Status
Source§impl PartialEq for AudioPlayback_Status
impl PartialEq for AudioPlayback_Status
Source§fn eq(&self, other: &AudioPlayback_Status) -> bool
fn eq(&self, other: &AudioPlayback_Status) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AudioPlayback_Status
Auto Trait Implementations§
impl Freeze for AudioPlayback_Status
impl RefUnwindSafe for AudioPlayback_Status
impl Send for AudioPlayback_Status
impl Sync for AudioPlayback_Status
impl Unpin for AudioPlayback_Status
impl UnsafeUnpin for AudioPlayback_Status
impl UnwindSafe for AudioPlayback_Status
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