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 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 StandaloneUseCase
impl Debug for StandaloneUseCase
Source§impl Default for StandaloneUseCase
impl Default for StandaloneUseCase
Source§impl PartialEq for StandaloneUseCase
impl PartialEq for StandaloneUseCase
impl Copy for StandaloneUseCase
impl Eq for StandaloneUseCase
impl StructuralPartialEq for StandaloneUseCase
Auto Trait Implementations§
impl Freeze for StandaloneUseCase
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