Type Alias Result
Source pub type Result<T> = Result<T, Error>;
pub enum Result<T> {
Ok(T),
Err(Error),
}
Contains the success value
The resulting type after applying the + operator.
The resulting type after applying the + operator.
The resulting type after applying the / operator.
The resulting type after applying the / operator.
The resulting type after applying the * operator.
The resulting type after applying the * operator.
The resulting type after applying the - operator.
The resulting type after applying the - operator.