Enum wmidi::Error [] [src]

pub enum Error {
    ChannelOutOfRange,
    NoBytes,
    NoSysExEndByte,
    NotEnoughBytes,
    UnexpectedEndSysExByte,
    UnexpectedNonSysExEndByte(u8),
    UnexpectedStatusByte,
}

Midi encoding and decoding errors.

Variants

The MIDI channel is not between 1 and 16 inclusive.

No MIDI bytes were provided.

A SysEx start byte was provided, but there was no corresponding SysEx end byte.

Not enough data bytes for the specified MIDI message.

Found a SysEx end byte, but there was no start byte.

Found a status byte interleaved with SysEx data. SysEx messages should be a start byte, followed by data bytes, and ending in a end byte.

Found a status byte, but expected a U7 data byte.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Copy for Error
[src]

impl Clone for Error
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for Error
[src]

impl PartialEq for Error
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.