Enum ether_dream::dac::stream::CommunicationError [] [src]

pub enum CommunicationError {
    Io(Error),
    Protocol(ProtocolError),
    Response(ResponseError),
}

Errors that may occur when connecting a Stream.

Variants

Trait Implementations

impl Debug for CommunicationError
[src]

[src]

Formats the value using the given formatter. Read more

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

impl From<Error> for CommunicationError
[src]

[src]

Performs the conversion.

impl From<ProtocolError> for CommunicationError
[src]

[src]

Performs the conversion.

impl From<ResponseError> for CommunicationError
[src]

[src]

Performs the conversion.

Auto Trait Implementations