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.
pub trait Subview<LabelList> {
type Output;
// Required method
fn subview(&self) -> Self::Output;
}Trait for generating a subview of a DataView. LabelList is the fields
to keep in the generated DataView.