pub type Result<T> = Result<T, RLanLibError>;Expand description
Custom Result type for this library. All Errors exposed by this library
will be returned as RLanLibError
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(RLanLibError),
}pub type Result<T> = Result<T, RLanLibError>;Custom Result type for this library. All Errors exposed by this library
will be returned as RLanLibError
pub enum Result<T> {
Ok(T),
Err(RLanLibError),
}