Type Alias Result
Source pub type Result<T> = Result<T, Error>;
Expand description
A specialized Result type for thunderstore operations.
This type alias uses Error as the error variant.
§Examples
use loadsmith_thunderstore::Result;
fn example() -> Result<()> {
Ok(())
}
pub enum Result<T> {
Ok(T),
Err(Error),
}
Contains the success value