pub struct MidiStreamParser<const SYSEX_MAX_LEN: usize> { /* private fields */ }
Expand description
Parser type with internal states.
Owns a buffer of SYSEX_MAX_LEN
bytes for constructing SysEx messages.
Implementations§
Source§impl<const SYSEX_MAX_LEN: usize> MidiStreamParser<SYSEX_MAX_LEN>
impl<const SYSEX_MAX_LEN: usize> MidiStreamParser<SYSEX_MAX_LEN>
Trait Implementations§
Source§impl<const SYSEX_MAX_LEN: usize> Debug for MidiStreamParser<SYSEX_MAX_LEN>
impl<const SYSEX_MAX_LEN: usize> Debug for MidiStreamParser<SYSEX_MAX_LEN>
Auto Trait Implementations§
impl<const SYSEX_MAX_LEN: usize> Freeze for MidiStreamParser<SYSEX_MAX_LEN>
impl<const SYSEX_MAX_LEN: usize> RefUnwindSafe for MidiStreamParser<SYSEX_MAX_LEN>
impl<const SYSEX_MAX_LEN: usize> Send for MidiStreamParser<SYSEX_MAX_LEN>
impl<const SYSEX_MAX_LEN: usize> Sync for MidiStreamParser<SYSEX_MAX_LEN>
impl<const SYSEX_MAX_LEN: usize> Unpin for MidiStreamParser<SYSEX_MAX_LEN>
impl<const SYSEX_MAX_LEN: usize> UnwindSafe for MidiStreamParser<SYSEX_MAX_LEN>
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