Skip to main content

Error

Trait Error 

Source
pub trait Error: 'static { }
Expand description

Marker trait for error compatible types

This is blanket implemented for all types that satisfies it.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<T: 'static> Error for T