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 |