Enum server::storage::Error [] [src]

pub enum Error {
    Io(Error),
    BinEn(EncodingError),
    BinDe(DecodingError),
    Byteorder(Error),
    Utf8Error(FromUtf8Error),
    Utf8StrError(Utf8Error),
    NulError(NulError),
    WrongMagicNmbr,
    Engine,
    LoadDataBase,
    RemoveColumn,
    AddColumn,
    InvalidType,
    InterruptedRead,
    OutOfBounds,
    MissingPrimaryKey,
    InvalidColumn,
    NotAPrimaryKey,
    NoImplementation,
    WrongLength,
    NoOperationPossible,
    InvalidState,
    EndOfFile,
    BeginningOfFile,
    PrimaryKeyValueExists,
    FoundNoPrimaryKey,
    PrimaryKeyNotAllowed,
}

A database table

Through this type, you can retreive certain meta information about the table (like column names, column types, storage engine, ...). It's access method locks the table globally and returns a storage engine to access the table data.

Variants

Io
BinEn
BinDe
Byteorder
Utf8Error
Utf8StrError
NulError
WrongMagicNmbr
Engine
LoadDataBase
RemoveColumn
AddColumn
InvalidType
InterruptedRead
OutOfBounds
MissingPrimaryKey
InvalidColumn
NotAPrimaryKey
NoImplementation
WrongLength
NoOperationPossible
InvalidState
EndOfFile
BeginningOfFile
PrimaryKeyValueExists
FoundNoPrimaryKey
PrimaryKeyNotAllowed

Trait Implementations

impl From<NulError> for Error

fn from(err: NulError) -> Error

impl From<Utf8Error> for Error

fn from(err: Utf8Error) -> Error

impl From<FromUtf8Error> for Error

fn from(err: FromUtf8Error) -> Error

impl From<Error> for Error

fn from(err: Error) -> Error

impl From<EncodingError> for Error

fn from(err: EncodingError) -> Error

impl From<DecodingError> for Error

fn from(err: DecodingError) -> Error

impl From<Error> for Error

fn from(err: Error) -> Error

Derived Implementations

impl Debug for Error

fn fmt(&self, __arg_0: &mut Formatter) -> Result