pub trait StorageError {
    // Required method
    fn not_found() -> Self;
}

Required Methods§

source

fn not_found() -> Self

Implementations on Foreign Types§

source§

impl StorageError for Error

Available on crate feature diesel-storage-backend only.
source§

fn not_found() -> Self

source§

impl<E> StorageError for DbEntityError<E>

Available on crate feature diesel-storage-backend only.
source§

fn not_found() -> Self

Implementors§