Enum mongodb::error::Error [] [src]

pub enum Error {
    IoError(Error),
    EncoderError(EncoderError),
    DecoderError(DecoderError),
    OIDError(Error),
    FromHexError(Error),
    WriteError(WriteException),
    BulkWriteError(BulkWriteException),
    ArgumentError(String),
    OperationError(String),
    ResponseError(String),
    CursorNotFoundError,
    PoisonLockError,
    CodedError(ErrorCode),
    EventListenerError(Option<Box<Error>>),
    MaliciousServerError(MaliciousServerErrorType),
    DefaultError(String),
}

The error type for MongoDB operations.

Variants

I/O operation errors of Read, Write, Seek, and associated traits.

A BSON struct could not be encoded.

A BSON struct could not be decoded.

An ObjectId could not be generated.

A hexadecimal string could not be converted to bytes.

A single-write operation failed.

A bulk-write operation failed due to one or more lower-level write-related errors.

An invalid function or operational argument was provided.

A database operation failed to send or receive a reply.

A database operation returned an invalid reply.

A cursor operation failed to return a cursor.

The application failed to secure a mutex due to a poisoned lock.

A server error with a given code.

The client was unable to emit the events to the listeners due to a poisoned lock; all event listeners were dropped, so they will have to be registered again. If the client is unable to emit a failure result, the error it failed to report is bundled into the EventListenerError.

The server that the client is attempting to authenticate to does not actually have the user's authentication information stored.

A standard error with a string description; a more specific error should generally be used.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl<'a> From<&'a str> for Error
[src]

Performs the conversion.

impl From<String> for Error
[src]

Performs the conversion.

impl From<WriteException> for Error
[src]

Performs the conversion.

impl From<BulkWriteException> for Error
[src]

Performs the conversion.

impl From<EncoderError> for Error
[src]

Performs the conversion.

impl From<DecoderError> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl<T> From<PoisonError<T>> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter.

impl Error for Error
[src]

A short description of the error. Read more

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