Type Alias AssertError
Source pub type AssertError = Box<dyn Error + Send + Sync + 'static>;
Expand description
A generic Error wrapper for assertion handler errors.
Assertion handlers can define their own Error type which can be seamlessly converted
into this type since it is a Box.
pub struct AssertError();