[][src]Struct fpsdk::plugin::message::SendSysEx

pub struct SendSysEx<'a>(pub usize, pub &'a [u8]);

(FL 8.0) Send a SysEx bytes, without delay. Do not abuse this!

The first value is the port to send to.

The second value is the data to send.

Trait Implementations

impl<'a> Debug for SendSysEx<'a>[src]

impl<'_> Message for SendSysEx<'_>[src]

type Return = ()

The result returned after sending the message.

Auto Trait Implementations

impl<'a> RefUnwindSafe for SendSysEx<'a>

impl<'a> Send for SendSysEx<'a>

impl<'a> Sync for SendSysEx<'a>

impl<'a> Unpin for SendSysEx<'a>

impl<'a> UnwindSafe for SendSysEx<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.