pub trait CellReprwhere
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.