pub enum SoundSubFormat {
Wav = 0,
Mp3 = 1,
}Expand description
Sound sub-formats
Variants§
Trait Implementations§
Source§impl Clone for SoundSubFormat
impl Clone for SoundSubFormat
Source§fn clone(&self) -> SoundSubFormat
fn clone(&self) -> SoundSubFormat
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 SoundSubFormat
impl Debug for SoundSubFormat
Source§impl<'de> Deserialize<'de> for SoundSubFormat
impl<'de> Deserialize<'de> for SoundSubFormat
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<SoundSubFormat> for i64
impl From<SoundSubFormat> for i64
Source§fn from(f: SoundSubFormat) -> i64
fn from(f: SoundSubFormat) -> i64
Converts to this type from the input type.
Source§impl PartialEq for SoundSubFormat
impl PartialEq for SoundSubFormat
Source§impl Serialize for SoundSubFormat
impl Serialize for SoundSubFormat
Source§impl TryFrom<i64> for SoundSubFormat
impl TryFrom<i64> for SoundSubFormat
impl Copy for SoundSubFormat
impl Eq for SoundSubFormat
impl StructuralPartialEq for SoundSubFormat
Auto Trait Implementations§
impl Freeze for SoundSubFormat
impl RefUnwindSafe for SoundSubFormat
impl Send for SoundSubFormat
impl Sync for SoundSubFormat
impl Unpin for SoundSubFormat
impl UnwindSafe for SoundSubFormat
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