pub enum BcoPlugType {
Isoc,
Async,
Midi,
Sync,
Analog,
Digital,
}
Expand description
The type of plug.
Variants§
Isoc
For isochronous communication.
Async
For asynchronous communication.
Midi
For MIDI messages.
Sync
For synchronization.
Analog
For analog signal.
Digital
For digital signal.
Trait Implementations§
Source§impl Clone for BcoPlugType
impl Clone for BcoPlugType
Source§fn clone(&self) -> BcoPlugType
fn clone(&self) -> BcoPlugType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BcoPlugType
impl Debug for BcoPlugType
Source§impl Default for BcoPlugType
impl Default for BcoPlugType
Source§impl PartialEq for BcoPlugType
impl PartialEq for BcoPlugType
impl Copy for BcoPlugType
impl Eq for BcoPlugType
impl StructuralPartialEq for BcoPlugType
Auto Trait Implementations§
impl Freeze for BcoPlugType
impl RefUnwindSafe for BcoPlugType
impl Send for BcoPlugType
impl Sync for BcoPlugType
impl Unpin for BcoPlugType
impl UnwindSafe for BcoPlugType
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