Type Alias deadpool_sqlite::HookError

source ·
pub type HookError = HookError<Error>;
Expand description

Type alias for using deadpool::managed::HookError with rusqlite.

Aliased Type§

enum HookError {
    Message(Cow<'static, str>),
    Backend(Error),
}

Variants§

§

Message(Cow<'static, str>)

Hook failed for some other reason.

§

Backend(Error)

Error caused by the backend.