Trait Printable

Source
pub trait Printable: Copy + Debug { }
🔬This is a nightly-only experimental API. (generic_assert_internals #44838)
Expand description

Tells which elements can be copied and displayed

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> Printable for T
where T: Copy + Debug,