pub struct ChartScene {
pub title: String,
pub time_label_format: String,
pub theme: ChartTheme,
pub viewport: Viewport,
pub hover: Option<HoverModel>,
pub panes: Vec<Pane>,
}Fields§
§title: String§time_label_format: String§theme: ChartTheme§viewport: Viewport§hover: Option<HoverModel>Optional shared hover/crosshair state that backends may visualize.
panes: Vec<Pane>Trait Implementations§
Source§impl Clone for ChartScene
impl Clone for ChartScene
Source§fn clone(&self) -> ChartScene
fn clone(&self) -> ChartScene
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ChartScene
impl Debug for ChartScene
Source§impl PartialEq for ChartScene
impl PartialEq for ChartScene
impl StructuralPartialEq for ChartScene
Auto Trait Implementations§
impl Freeze for ChartScene
impl RefUnwindSafe for ChartScene
impl Send for ChartScene
impl Sync for ChartScene
impl Unpin for ChartScene
impl UnsafeUnpin for ChartScene
impl UnwindSafe for ChartScene
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