pub struct UsageGraphPoint {
pub requests: i64,
pub time_stamp: String,
}
Fields§
§requests: i64
§time_stamp: String
Implementations§
Source§impl UsageGraphPoint
impl UsageGraphPoint
pub fn new(requests: i64, time_stamp: String) -> UsageGraphPoint
Trait Implementations§
Source§impl Clone for UsageGraphPoint
impl Clone for UsageGraphPoint
Source§fn clone(&self) -> UsageGraphPoint
fn clone(&self) -> UsageGraphPoint
Returns a duplicate of the value. Read more
1.0.0 · 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 UsageGraphPoint
impl Debug for UsageGraphPoint
Source§impl Default for UsageGraphPoint
impl Default for UsageGraphPoint
Source§fn default() -> UsageGraphPoint
fn default() -> UsageGraphPoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UsageGraphPoint
impl<'de> Deserialize<'de> for UsageGraphPoint
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 UsageGraphPoint
impl PartialEq for UsageGraphPoint
Source§impl Serialize for UsageGraphPoint
impl Serialize for UsageGraphPoint
impl StructuralPartialEq for UsageGraphPoint
Auto Trait Implementations§
impl Freeze for UsageGraphPoint
impl RefUnwindSafe for UsageGraphPoint
impl Send for UsageGraphPoint
impl Sync for UsageGraphPoint
impl Unpin for UsageGraphPoint
impl UnwindSafe for UsageGraphPoint
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