Trait Displayed

Source
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§

Source

type Node: Node + ?Sized

The display node type to use for displaying Self

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§