Enum oci_rs::oci_error::OciError [] [src]

pub enum OciError {
    Oracle(ErrorRecord),
    Conversion(Box<Error>),
}

The various errors that might result when interacting with the OCI library.

Variants

Contains the Oracle error details. Everything that comes back from the database will be retuned in this variant.

Picks up any errors that might come during conversion, such as a Utf8Error. It will not represent any Oracle errors.

Trait Implementations

impl Debug for OciError
[src]

Formats the value using the given formatter.

impl Display for OciError
[src]

Formats the value using the given formatter. Read more

impl Error for OciError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more