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),
}