pub struct Pane {
pub id: String,
pub title: Option<String>,
pub weight: u16,
pub y_axis: YAxisSpec,
pub series: Vec<Series>,
}Fields§
§id: String§title: Option<String>§weight: u16Relative vertical weight used when a scene is split into stacked panes.
y_axis: YAxisSpec§series: Vec<Series>Trait Implementations§
impl StructuralPartialEq for Pane
Auto Trait Implementations§
impl Freeze for Pane
impl RefUnwindSafe for Pane
impl Send for Pane
impl Sync for Pane
impl Unpin for Pane
impl UnsafeUnpin for Pane
impl UnwindSafe for Pane
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