pub trait PrettyError: Error + Sized {
    // Provided method
    fn fmt_pretty(&self, fmt: &mut ErrorFormatter<'_>) { ... }
}
Available on crate feature wgpu only.

Provided Methods§

fn fmt_pretty(&self, fmt: &mut ErrorFormatter<'_>)

Object Safety§

This trait is not object safe.

Implementors§