pub trait AsTableSlice {
// Required method
fn as_slice(&self) -> TableSlice<'_>;
}Expand description
Trait implemented by types which can be sliced
Required Methods§
Sourcefn as_slice(&self) -> TableSlice<'_>
fn as_slice(&self) -> TableSlice<'_>
Get a slice from self
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".