Enum mysql::DriverError[][src]

pub enum DriverError {
    ConnectTimeout,
    CouldNotConnect(Option<(String, String, ErrorKind)>),
    UnsupportedProtocol(u8),
    PacketOutOfSync,
    PacketTooLarge,
    Protocol41NotSet,
    UnexpectedPacket,
    MismatchedStmtParams(u16usize),
    InvalidPoolConstraints,
    SetupError,
    SslNotSupported,
    CouldNotParseVersion,
    ReadOnlyTransNotSupported,
    PoisonedPoolMutex,
    Timeout,
    MissingNamedParameter(String),
    NamedParamsForPositionalQuery,
    MixedParams,
    UnknownAuthPlugin(String),
}

Variants

Trait Implementations

impl From<DriverError> for Error
[src]

Performs the conversion.

impl Eq for DriverError
[src]

impl PartialEq for DriverError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for DriverError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for DriverError
[src]

This method is soft-deprecated. Read more

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

impl Display for DriverError
[src]

Formats the value using the given formatter. Read more

impl Debug for DriverError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for DriverError

impl Sync for DriverError