pub type Result<T> = Result<T, OciSpecError>;
Expand description
Spezialized result type for oci spec operations. It is used for any operation that might produce an error. This typedef is generally used to avoid writing out OciSpecError directly and is otherwise a direct mapping to Result.
Aliased Type§
enum Result<T> {
Ok(T),
Err(OciSpecError),
}