Struct vst::event::SysExEvent
source · Expand description
A system exclusive event.
This is just a block of data and it is up to the plugin to interpret this. Generally used by midi controllers.
Fields§
§payload: &'a [u8]
The SysEx payload.
delta_frames: i32
Number of samples into the current processing block that this event occurs on.
E.g. if the block size is 512 and this value is 123, the event will occur on sample
samples[123]
.
Trait Implementations§
source§impl<'a> Clone for SysExEvent<'a>
impl<'a> Clone for SysExEvent<'a>
source§fn clone(&self) -> SysExEvent<'a>
fn clone(&self) -> SysExEvent<'a>
Returns a copy 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<'a> WriteIntoPlaceholder for SysExEvent<'a>
impl<'a> WriteIntoPlaceholder for SysExEvent<'a>
source§fn write_into(&self, out: &mut PlaceholderEvent)
fn write_into(&self, out: &mut PlaceholderEvent)
writes an event into the given placeholder memory location