Enum x11rb_protocol::errors::ConnectError
source · [−]#[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
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
sourceimpl Debug for ConnectError
impl Debug for ConnectError
sourceimpl Display for ConnectError
impl Display for ConnectError
sourceimpl Error for ConnectError
impl Error for ConnectError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<Error> for ConnectError
impl From<Error> for ConnectError
sourceimpl From<ParseError> for ConnectError
impl From<ParseError> for ConnectError
sourcefn from(err: ParseError) -> Self
fn from(err: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for ConnectError
impl Send for ConnectError
impl Sync for ConnectError
impl Unpin for ConnectError
impl !UnwindSafe for ConnectError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more