UniDisplay

Trait UniDisplay 

Source
pub trait UniDisplay:
    Display
    + Debug
    + Any
    + Send
    + Sync {
    // Provided method
    fn type_name(&self) -> &'static str { ... }
}
Expand description

Standard Display trait with Any to allow downcasting.

Provided Methods§

Source

fn type_name(&self) -> &'static str

Returns the concrete type name of the error.

Implementors§

Source§

impl<E> UniDisplay for E
where E: Display + Debug + Any + Send + Sync,