pub trait Displayed: Sized {
type Node: Node + ?Sized;
}
Expand description
A trait with a single associated type. Used with expressions that can be displayed.
Required Associated Types§
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.