pub type Result<T> = Result<T, ArtilleryError>;
Expand description
Result type for operations that could result in an ArtilleryError
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ArtilleryError),
}
pub type Result<T> = Result<T, ArtilleryError>;
Result type for operations that could result in an ArtilleryError
pub enum Result<T> {
Ok(T),
Err(ArtilleryError),
}