pub type Result<T> = Result<T, OciDistributionError>;
Expand description
Helper type to declare Result
objects that might return a OciDistributionError
Aliased Type§
enum Result<T> {
Ok(T),
Err(OciDistributionError),
}
pub type Result<T> = Result<T, OciDistributionError>;
Helper type to declare Result
objects that might return a OciDistributionError
enum Result<T> {
Ok(T),
Err(OciDistributionError),
}