Trait midi2::TryIntoBytes

source ·
pub trait TryIntoBytes<T> {
    // Required method
    fn try_into_bytes(self) -> Result<T, BufferOverflow>;
}

Required Methods§

Implementors§

source§

impl<T, U> TryIntoBytes<U> for T
where U: TryFromUmp<T>,