#[non_exhaustive]
pub enum ConnectError {
    UnknownError,
    ParseError(ParseError),
    InsufficientMemory,
    DisplayParsingError,
    InvalidScreen,
    IoError(Error),
    ZeroIdMask,
    SetupAuthenticate(SetupAuthenticate),
    SetupFailed(SetupFailed),
    Incomplete {
        expected: usize,
        received: usize,
    },
}
Expand description

An error that occurred while connecting to an X11 server

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

UnknownError

An unknown error occurred.

One situation were this error is used when libxcb indicates an error that does not match any of the defined error conditions. Thus, libxcb is violating its own API (or new error cases were defined, but are not yet handled by x11rb).

ParseError(ParseError)

Error while parsing some data, see ParseError.

InsufficientMemory

Out of memory.

This is XCB_CONN_CLOSED_MEM_INSUFFICIENT.

DisplayParsingError

Error during parsing of display string.

This is XCB_CONN_CLOSED_PARSE_ERR.

InvalidScreen

Server does not have a screen matching the display.

This is XCB_CONN_CLOSED_INVALID_SCREEN.

IoError(Error)

An I/O error occurred on the connection.

ZeroIdMask

Invalid ID mask provided by the server.

The value of resource_id_mask in the Setup provided by the server was zero.

SetupAuthenticate(SetupAuthenticate)

The server rejected the connection with a SetupAuthenticate message.

SetupFailed(SetupFailed)

The server rejected the connection with a SetupFailed message.

Incomplete

Fields

expected: usize

The number of bytes that were expected.

received: usize

The number of bytes that were received.

The client did not receive enough data from the server to complete the handshake.

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

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

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Converts to this type from the input type.

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.