[−]Enum ejdb::types::Error
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
fn from(err: EncoderError) -> Error
impl From<DecoderError> for Error
fn from(err: DecoderError) -> Error
impl From<PartialSave> for Error
fn from(err: PartialSave) -> 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
Auto Trait Implementations
Blanket Implementations
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,