Skip to main content

AnyError

Trait AnyError 

Source
pub trait AnyError: Any + Error { }
Expand description

Types that represent errors that can happen during reduction.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<T> AnyError for T
where T: Any + Error,