pub struct ChartInfo {
pub chart_types: Vec<String>,
pub metrics_plotted: Vec<String>,
pub chart_library: String,
pub interactive_features: Vec<String>,
pub export_formats: Vec<String>,
pub styling_theme: String,
pub data_points: usize,
pub chart_complexity: String,
pub accessibility_features: Vec<String>,
pub chart_descriptions: Vec<String>,
}
Fields§
§chart_types: Vec<String>
§metrics_plotted: Vec<String>
§chart_library: String
§interactive_features: Vec<String>
§export_formats: Vec<String>
§styling_theme: String
§data_points: usize
§chart_complexity: String
§accessibility_features: Vec<String>
§chart_descriptions: Vec<String>
Trait Implementations§
impl StructuralPartialEq for ChartInfo
Auto Trait Implementations§
impl Freeze for ChartInfo
impl RefUnwindSafe for ChartInfo
impl Send for ChartInfo
impl Sync for ChartInfo
impl Unpin for ChartInfo
impl UnwindSafe for ChartInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more