Enum dbkit_engine::error::DBError [] [src]

pub enum DBError {
    Unknown,
    IO(IOError),
    UnknownType(String),
    AttributeMissing(String),
    AttributeNullability(String),
    AttributeType(String),
    RowOutOfBounds,
    Memory,
    MemoryLimit,
}

Variants

An underlying IO operation caused an error

Referencing a missing schema attribute (name or position)

Mismatched expectation about attributes nullability

Mismatched expectation about attribute types

Unknown memory allocation error

Memory allocation limit reached (via policy)

Methods

impl DBError
[src]

Trait Implementations

impl Display for DBError
[src]

Formats the value using the given formatter.

impl Debug for DBError
[src]

Formats the value using the given formatter.