pub struct MIDISysExEvent<Buffer: Borrow<[u8]>> {
pub message: Buffer,
}Fields§
§message: BufferImplementations§
Trait Implementations§
Source§impl<Buffer: Clone + Borrow<[u8]>> Clone for MIDISysExEvent<Buffer>
impl<Buffer: Clone + Borrow<[u8]>> Clone for MIDISysExEvent<Buffer>
Source§fn clone(&self) -> MIDISysExEvent<Buffer>
fn clone(&self) -> MIDISysExEvent<Buffer>
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<Buffer: Ord + Borrow<[u8]>> Ord for MIDISysExEvent<Buffer>
impl<Buffer: Ord + Borrow<[u8]>> Ord for MIDISysExEvent<Buffer>
Source§fn cmp(&self, other: &MIDISysExEvent<Buffer>) -> Ordering
fn cmp(&self, other: &MIDISysExEvent<Buffer>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<Buffer: PartialOrd + Borrow<[u8]>> PartialOrd for MIDISysExEvent<Buffer>
impl<Buffer: PartialOrd + Borrow<[u8]>> PartialOrd for MIDISysExEvent<Buffer>
impl<Buffer: Eq + Borrow<[u8]>> Eq for MIDISysExEvent<Buffer>
impl<Buffer: Borrow<[u8]>> StructuralPartialEq for MIDISysExEvent<Buffer>
Auto Trait Implementations§
impl<Buffer> Freeze for MIDISysExEvent<Buffer>where
Buffer: Freeze,
impl<Buffer> RefUnwindSafe for MIDISysExEvent<Buffer>where
Buffer: RefUnwindSafe,
impl<Buffer> Send for MIDISysExEvent<Buffer>where
Buffer: Send,
impl<Buffer> Sync for MIDISysExEvent<Buffer>where
Buffer: Sync,
impl<Buffer> Unpin for MIDISysExEvent<Buffer>where
Buffer: Unpin,
impl<Buffer> UnwindSafe for MIDISysExEvent<Buffer>where
Buffer: UnwindSafe,
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