Skip to main content

NotFound

Trait NotFound 

Source
pub trait NotFound<T> {
    // Required method
    fn is_not_found(&self) -> bool;
}

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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