[]Enum ejdb::types::Error

pub enum Error {
    Io(Error),
    BsonEncoding(EncoderError),
    BsonDecoding(DecoderError),
    PartialSave(PartialSave),
    Other(Cow<'static, str>),
}

The main error type used in the library.

Variants

Io(Error)

I/O error.

BsonEncoding(EncoderError)

BSON encoding error (when converting Rust BSON representation to the EJDB one).

BsonDecoding(DecoderError)

BSON decoding error (when converting to Rust BSON representation from the EJDB one).

PartialSave(PartialSave)

Partial save error returned by Collection::save_all() method.

Other(Cow<'static, str>)

Some other error.

Trait Implementations

impl From<Error> for Error

impl From<EncoderError> for Error

impl From<DecoderError> for Error

impl From<PartialSave> for Error

impl From<&'static str> for Error

impl From<String> for Error

impl Debug for Error
[src]

impl Display for Error

impl Error for Error

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

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

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err