pub trait Dimensions {
// Required methods
fn as_strings(&self) -> Vec<String>;
fn len(&self) -> usize;
}Expand description
Trait to extract the display values for rendering.
Typically, consumers need not implement this trait (as long as they use tuple data types, ex: (T, U, V)).
Required Methods§
Sourcefn as_strings(&self) -> Vec<String>
fn as_strings(&self) -> Vec<String>
Get the string format values from this vector/data.