Type Alias xcb::ConnResult

source ·
pub type ConnResult<T> = Result<T, ConnError>;
Expand description

The result type associated with ConnError.

Aliased Type§

enum ConnResult<T> {
    Ok(T),
    Err(ConnError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ConnError)

Contains the error value