Enum bip_utracker::ClientError [] [src]

pub enum ClientError {
    MaxTimeout,
    MaxLength,
    ClientShutdown,
    ServerError,
    IPVersionMismatch,
    ServerMessage(ErrorResponse<'static>),
}

Errors occuring as the result of a ClientRequest.

Variants

Request timeout reached.

Request length exceeded the packet length.

Client shut down the request client.

Server sent us an invalid message.

Requested to send from IPv4 to IPv6 or vice versa.

Server returned an error message.

Trait Implementations

impl Debug for ClientError
[src]

[src]

Formats the value using the given formatter.

impl Clone for ClientError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for ClientError
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for ClientError
[src]