pub type Result<T> = Result<T, REQUEST_RESULT>;
Expand description
A specialized Result
type for request operations.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(REQUEST_RESULT),
}
pub type Result<T> = Result<T, REQUEST_RESULT>;
A specialized Result
type for request operations.
pub enum Result<T> {
Ok(T),
Err(REQUEST_RESULT),
}