PreventEraseError

Trait PreventEraseError 

Source
pub trait PreventEraseError: Sized {
    // Provided methods
    fn into_internal(self) -> impl Any { ... }
    fn context(self) -> impl Any { ... }
    fn with_context(self, _: impl Any) -> impl Any { ... }
}
Expand description

See DbError

Provided Methods§

Source

fn into_internal(self) -> impl Any

Source

fn context(self) -> impl Any

Source

fn with_context(self, _: impl Any) -> impl Any

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl PreventEraseError for &Error

Source§

impl PreventEraseError for Error

Source§

impl<T> PreventEraseError for &Result<T, Error>

Source§

impl<T> PreventEraseError for &Result<T, DbSqlError>

Source§

impl<T> PreventEraseError for Result<T, Error>

Source§

impl<T> PreventEraseError for Result<T, DbSqlError>

Implementors§