pub enum RecordingFormat {
WavSemicolonL16,
Mp3,
}Expand description
This determines the format of the recording. Defaults to wav;l16. @default ‘wav;l16’
Variants§
Trait Implementations§
Source§impl Clone for RecordingFormat
impl Clone for RecordingFormat
Source§fn clone(&self) -> RecordingFormat
fn clone(&self) -> RecordingFormat
Returns a copy 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 RecordingFormat
impl Debug for RecordingFormat
Source§impl Default for RecordingFormat
impl Default for RecordingFormat
Source§fn default() -> RecordingFormat
fn default() -> RecordingFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecordingFormat
impl<'de> Deserialize<'de> for RecordingFormat
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 Hash for RecordingFormat
impl Hash for RecordingFormat
Source§impl Ord for RecordingFormat
impl Ord for RecordingFormat
Source§fn cmp(&self, other: &RecordingFormat) -> Ordering
fn cmp(&self, other: &RecordingFormat) -> Ordering
1.21.0 · 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 RecordingFormat
impl PartialEq for RecordingFormat
Source§impl PartialOrd for RecordingFormat
impl PartialOrd for RecordingFormat
Source§impl Serialize for RecordingFormat
impl Serialize for RecordingFormat
impl Copy for RecordingFormat
impl Eq for RecordingFormat
impl StructuralPartialEq for RecordingFormat
Auto Trait Implementations§
impl Freeze for RecordingFormat
impl RefUnwindSafe for RecordingFormat
impl Send for RecordingFormat
impl Sync for RecordingFormat
impl Unpin for RecordingFormat
impl UnwindSafe for RecordingFormat
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