Type Alias atspi_connection::AtspiResult

source ·
pub type AtspiResult<T> = Result<T, AtspiError>;
Expand description

A wrapper for results whose error type is AtspiError.

Aliased Type§

enum AtspiResult<T> {
    Ok(T),
    Err(AtspiError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AtspiError)

Contains the error value