pub struct DataUsageSummary {
pub count: i64,
pub data: String,
pub timestamp: String,
}Fields§
§count: i64§data: String§timestamp: StringImplementations§
Trait Implementations§
Source§impl Clone for DataUsageSummary
impl Clone for DataUsageSummary
Source§fn clone(&self) -> DataUsageSummary
fn clone(&self) -> DataUsageSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DataUsageSummary
impl Debug for DataUsageSummary
Source§impl Default for DataUsageSummary
impl Default for DataUsageSummary
Source§fn default() -> DataUsageSummary
fn default() -> DataUsageSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataUsageSummary
impl<'de> Deserialize<'de> for DataUsageSummary
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
Source§impl PartialEq for DataUsageSummary
impl PartialEq for DataUsageSummary
Source§fn eq(&self, other: &DataUsageSummary) -> bool
fn eq(&self, other: &DataUsageSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DataUsageSummary
impl Serialize for DataUsageSummary
impl StructuralPartialEq for DataUsageSummary
Auto Trait Implementations§
impl Freeze for DataUsageSummary
impl RefUnwindSafe for DataUsageSummary
impl Send for DataUsageSummary
impl Sync for DataUsageSummary
impl Unpin for DataUsageSummary
impl UnsafeUnpin for DataUsageSummary
impl UnwindSafe for DataUsageSummary
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