Enum serde_osc::error::Error [] [src]

pub enum Error {
    Message(String),
    UnsupportedType,
    BadFormat,
    BadPadding,
    Io(Error),
    BadCast(TryFromIntError),
    StrParseError(FromUtf8Error),
}

Variants

User provided error message (via serde::de::Error::custom)

Unknown argument type (i.e. not a 'f'=f32, 'i'=i32, etc)

Packet doesn't obey correct format; mismatched lengths, or attempt to read more arguments than were in the typestring (e.g.)

OSC expects all data to be aligned to 4 bytes lengths. Likely violators of this are strings, especially those at the end of a packet.

Error encountered due to std::io::Read

Error converting between parsed type and what it represents. e.g. OSC spec uses i32 for lengths, which we cast to u64, but that could underflow.

We store ascii strings as UTF-8. Technically, this is safe, but if we received non-ascii data, we could have invalid UTF-8

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Conversion from io::Error for use with the ? operator

Performs the conversion.

impl From<TryFromIntError> for Error
[src]

Conversion from num::TryFromIntError for use with the ? operator

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

Conversion from string::FromUtf8Error for use with the ? operator

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Error for Error
[src]

Raised when there is general error when deserializing a type. Read more

Raised when a Deserialize receives a type different from what it was expecting. Read more

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more

Raised when a Deserialize enum type received a variant with an unrecognized name. Read more

Raised when a Deserialize struct type received a field with an unrecognized name. Read more

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input. Read more

Raised when a Deserialize struct type received more than one of the same field. Read more

impl Error for Error
[src]

Raised when a Serialize implementation encounters a general error while serializing a type. Read more