Trait CellRepr

Source
pub trait CellRepr
where Self: Copy + 'static,
{ }
Expand description

Trait for types representing table cell content.

CellRepr aggregates necessary bounds for types used as cell representations, ensuring they are copyable and have a static lifetime.

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> CellRepr for T
where T: Copy + 'static,