pub enum StandaloneUseCase {
Preamp,
AdDa,
Mixer,
Undefined,
}Expand description
Usecase of standalone mode.
Variants§
Preamp
For microphone pre-amplifier.
AdDa
For A/D and D/A conversion.
Mixer
For signal mixing.
Undefined
Not decided yet.
Trait Implementations§
source§impl Clone for StandaloneUseCase
impl Clone for StandaloneUseCase
source§fn clone(&self) -> StandaloneUseCase
fn clone(&self) -> StandaloneUseCase
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 StandaloneUseCase
impl Debug for StandaloneUseCase
source§impl Default for StandaloneUseCase
impl Default for StandaloneUseCase
source§impl PartialEq for StandaloneUseCase
impl PartialEq for StandaloneUseCase
source§fn eq(&self, other: &StandaloneUseCase) -> bool
fn eq(&self, other: &StandaloneUseCase) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for StandaloneUseCase
impl Eq for StandaloneUseCase
impl StructuralEq for StandaloneUseCase
impl StructuralPartialEq for StandaloneUseCase
Auto Trait Implementations§
impl RefUnwindSafe for StandaloneUseCase
impl Send for StandaloneUseCase
impl Sync for StandaloneUseCase
impl Unpin for StandaloneUseCase
impl UnwindSafe for StandaloneUseCase
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