pub enum Processing {
Tick,
Batch(u8),
}Expand description
Processing mode for snapshotting an audio node.
Variants§
Tick
Process one sample at a time.
Batch(u8)
Process a batch of samples at a time.
max batch size is 64
Trait Implementations§
Source§impl Clone for Processing
impl Clone for Processing
Source§fn clone(&self) -> Processing
fn clone(&self) -> Processing
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 Processing
impl Debug for Processing
Source§impl Default for Processing
impl Default for Processing
Source§fn default() -> Processing
fn default() -> Processing
Returns the “default value” for a type. Read more
impl Copy for Processing
Auto Trait Implementations§
impl Freeze for Processing
impl RefUnwindSafe for Processing
impl Send for Processing
impl Sync for Processing
impl Unpin for Processing
impl UnwindSafe for Processing
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