pub trait IsTImpl {
// Provided methods
fn get_cell_impl() -> CellImpl { ... }
fn get_self_cell_impl(&self) -> CellImpl { ... }
}Expand description
This trait allows for standardized polling of implementation type,
and indicates the TCell implementation.
Provided Methods§
fn get_cell_impl() -> CellImpl
fn get_self_cell_impl(&self) -> CellImpl
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.