pub struct Dashboard {
pub id: Option<String>,
pub title: Option<String>,
pub description: Option<String>,
pub widgets: Option<Vec<Widget>>,
pub layout_type: Option<String>,
pub is_read_only: Option<bool>,
pub notify_list: Option<Vec<String>>,
pub template_variables: Option<Vec<TemplateVariable>>,
}Fields§
§id: Option<String>§title: Option<String>§description: Option<String>§widgets: Option<Vec<Widget>>§layout_type: Option<String>§is_read_only: Option<bool>§notify_list: Option<Vec<String>>§template_variables: Option<Vec<TemplateVariable>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Dashboard
impl<'de> Deserialize<'de> for Dashboard
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 Dashboard
impl RefUnwindSafe for Dashboard
impl Send for Dashboard
impl Sync for Dashboard
impl Unpin for Dashboard
impl UnwindSafe for Dashboard
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