pub struct RecorderSetupProcessing {
pub fin: u8,
pub fout: u8,
pub ab: u8,
pub qrec: u8,
pub qpl: u8,
pub cd: u8,
}Expand description
Second page of settings controlling an Audio Track’s Recording Buffer configuration.
Fields§
§fin: u8§fout: u8§ab: u8§qrec: u8§qpl: u8§cd: u8Trait Implementations§
Source§impl AsMut<RecorderSetupProcessing> for RecorderSetupProcessing
impl AsMut<RecorderSetupProcessing> for RecorderSetupProcessing
Source§fn as_mut(&mut self) -> &mut RecorderSetupProcessing
fn as_mut(&mut self) -> &mut RecorderSetupProcessing
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<RecorderSetupProcessing> for RecorderSetupProcessing
impl AsRef<RecorderSetupProcessing> for RecorderSetupProcessing
Source§fn as_ref(&self) -> &RecorderSetupProcessing
fn as_ref(&self) -> &RecorderSetupProcessing
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for RecorderSetupProcessing
impl Clone for RecorderSetupProcessing
Source§fn clone(&self) -> RecorderSetupProcessing
fn clone(&self) -> RecorderSetupProcessing
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 RecorderSetupProcessing
Source§impl Debug for RecorderSetupProcessing
impl Debug for RecorderSetupProcessing
Source§impl Default for RecorderSetupProcessing
impl Default for RecorderSetupProcessing
Source§impl<'de> Deserialize<'de> for RecorderSetupProcessing
impl<'de> Deserialize<'de> for RecorderSetupProcessing
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 RecorderSetupProcessing
Source§impl Hash for RecorderSetupProcessing
impl Hash for RecorderSetupProcessing
Source§impl Ord for RecorderSetupProcessing
impl Ord for RecorderSetupProcessing
Source§fn cmp(&self, other: &RecorderSetupProcessing) -> Ordering
fn cmp(&self, other: &RecorderSetupProcessing) -> 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 RecorderSetupProcessing
impl PartialEq for RecorderSetupProcessing
Source§impl PartialOrd for RecorderSetupProcessing
impl PartialOrd for RecorderSetupProcessing
Source§impl Serialize for RecorderSetupProcessing
impl Serialize for RecorderSetupProcessing
impl StructuralPartialEq for RecorderSetupProcessing
Auto Trait Implementations§
impl Freeze for RecorderSetupProcessing
impl RefUnwindSafe for RecorderSetupProcessing
impl Send for RecorderSetupProcessing
impl Sync for RecorderSetupProcessing
impl Unpin for RecorderSetupProcessing
impl UnsafeUnpin for RecorderSetupProcessing
impl UnwindSafe for RecorderSetupProcessing
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more