pub trait Subview<LabelList> {
type Output;
// Required method
fn subview(&self) -> Self::Output;
}Expand description
Trait for generating a subview of a DataView. LabelList is the fields
to keep in the generated DataView.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".