pub struct StatCard {
pub title: String,
pub value: String,
pub change: Option<StatChange>,
pub icon: Option<String>,
pub color: Option<String>,
pub link: Option<String>,
}Expand description
Statistics card for dashboard
Fields§
§title: StringCard title
value: StringMain value
change: Option<StatChange>Change from previous period
icon: Option<String>Icon
color: Option<String>Card color
link: Option<String>Link URL
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StatCard
impl<'de> Deserialize<'de> for StatCard
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 StatCard
impl RefUnwindSafe for StatCard
impl Send for StatCard
impl Sync for StatCard
impl Unpin for StatCard
impl UnwindSafe for StatCard
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