Enum nannou::osc::CommunicationError [] [src]

pub enum CommunicationError {
    Io(Error),
    Osc(Error),
    Poisoned,
}

Errors that might occur whilst attempting to send or receive an OSC packet.

Variants

Trait Implementations

impl Debug for CommunicationError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for CommunicationError
[src]

[src]

Performs the conversion.

impl From<Error> for CommunicationError
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl Error for CommunicationError
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for CommunicationError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations