[][src]Enum c3p0_json::C3p0Error

pub enum C3p0Error {
    SqlError {
        cause: String,
    },
    RowMapperError {
        cause: String,
    },
    OptimisticLockError {
        message: String,
    },
    JsonProcessingError {
        cause: Error,
    },
    IteratorError {
        message: String,
    },
    PoolError {
        cause: String,
    },
    ResultNotFoundError,
    TransactionError {
        cause: Box<dyn Error + 'static>,
    },
    CorruptedDbMigrationState {
        message: String,
    },
    AlteredMigrationSql {
        message: String,
    },
    WrongMigrationSet {
        message: String,
    },
    FileSystemError {
        message: String,
    },
}

Variants

SqlError

Fields of SqlError

cause: String
RowMapperError

Fields of RowMapperError

cause: String
OptimisticLockError

Fields of OptimisticLockError

message: String
JsonProcessingError

Fields of JsonProcessingError

cause: Error
IteratorError

Fields of IteratorError

message: String
PoolError

Fields of PoolError

cause: String
ResultNotFoundErrorTransactionError

Fields of TransactionError

cause: Box<dyn Error + 'static>
CorruptedDbMigrationState

Fields of CorruptedDbMigrationState

message: String
AlteredMigrationSql

Fields of AlteredMigrationSql

message: String
WrongMigrationSet

Fields of WrongMigrationSet

message: String
FileSystemError

Fields of FileSystemError

message: String

Trait Implementations

impl Debug for C3p0Error[src]

impl Error for C3p0Error[src]

impl Display for C3p0Error[src]

impl From<Error> for C3p0Error[src]

Auto Trait Implementations

impl Unpin for C3p0Error

impl !Sync for C3p0Error

impl !Send for C3p0Error

impl !RefUnwindSafe for C3p0Error

impl !UnwindSafe for C3p0Error

Blanket Implementations

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

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

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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