pub struct DashboardSection {
pub id: String,
pub title: String,
pub position: GridPosition,
pub chart_ids: Vec<String>,
pub visible: bool,
}
Expand description
Dashboard section
Fields§
§id: String
Section ID
title: String
Section title
position: GridPosition
Grid position and size
chart_ids: Vec<String>
Charts in this section
visible: bool
Section visibility
Trait Implementations§
Source§impl Clone for DashboardSection
impl Clone for DashboardSection
Source§fn clone(&self) -> DashboardSection
fn clone(&self) -> DashboardSection
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 DashboardSection
impl Debug for DashboardSection
Source§impl<'de> Deserialize<'de> for DashboardSection
impl<'de> Deserialize<'de> for DashboardSection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DashboardSection
impl RefUnwindSafe for DashboardSection
impl Send for DashboardSection
impl Sync for DashboardSection
impl Unpin for DashboardSection
impl UnwindSafe for DashboardSection
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