pub enum BusKind {
Main,
Sidechain,
}Expand description
Whether a bus is the plugin’s main audio I/O or a secondary
sidechain / aux bus. Format wrappers use this to set the
per-bus role flag the host expects (kBusType_Main /
kBusType_Aux in VST3, is_sidechain in CLAP, etc.).
Variants§
Trait Implementations§
impl Copy for BusKind
impl Eq for BusKind
impl StructuralPartialEq for BusKind
Auto Trait Implementations§
impl Freeze for BusKind
impl RefUnwindSafe for BusKind
impl Send for BusKind
impl Sync for BusKind
impl Unpin for BusKind
impl UnsafeUnpin for BusKind
impl UnwindSafe for BusKind
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