pub struct MeterQuantity {
pub timestamp: DateTime<Utc>,
pub quantity: usize,
}Fields§
§timestamp: DateTime<Utc>The timestamp for the current period.
quantity: usizeThe quantity for the current period.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MeterQuantity
impl<'de> Deserialize<'de> for MeterQuantity
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 MeterQuantity
impl RefUnwindSafe for MeterQuantity
impl Send for MeterQuantity
impl Sync for MeterQuantity
impl Unpin for MeterQuantity
impl UnwindSafe for MeterQuantity
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