Enum oci_spec::OciSpecError
source · [−]pub enum OciSpecError {
Other(String),
Io(Error),
SerDe(Error),
Builder(UninitializedFieldError),
}Expand description
Error type for oci spec errors.
Variants
Other(String)
Will be returned if an error occurs that cannot be mapped to a more specialized error variant.
Io(Error)
Will be returned when an error happens during io operations.
SerDe(Error)
Will be returned when an error happens during serialization or deserialization.
Builder(UninitializedFieldError)
Builder specific errors.
Trait Implementations
Performs the conversion.