pub struct DashboardInfo {
pub id: String,
pub title: String,
pub description: String,
pub category: String,
pub last_updated: SystemTime,
}Expand description
Dashboard information
Fields§
§id: StringDashboard identifier
title: StringDashboard title
description: StringDashboard description
category: StringDashboard category
last_updated: SystemTimeLast update timestamp
Trait Implementations§
Source§impl Debug for DashboardInfo
impl Debug for DashboardInfo
Source§impl<'de> Deserialize<'de> for DashboardInfo
impl<'de> Deserialize<'de> for DashboardInfo
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 DashboardInfo
impl RefUnwindSafe for DashboardInfo
impl Send for DashboardInfo
impl Sync for DashboardInfo
impl Unpin for DashboardInfo
impl UnwindSafe for DashboardInfo
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