pub struct MetricsEndpointsInner {
pub time: i32,
pub calls: i32,
pub endpoint: String,
}Fields§
§time: i32Starting time of the call count interval (ends midnight UTC) in UNIX time
calls: i32Sum of all calls for a particular day and endpoint
endpoint: StringEndpoint parent name
Implementations§
Trait Implementations§
Source§impl Clone for MetricsEndpointsInner
impl Clone for MetricsEndpointsInner
Source§fn clone(&self) -> MetricsEndpointsInner
fn clone(&self) -> MetricsEndpointsInner
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 MetricsEndpointsInner
impl Debug for MetricsEndpointsInner
Source§impl Default for MetricsEndpointsInner
impl Default for MetricsEndpointsInner
Source§fn default() -> MetricsEndpointsInner
fn default() -> MetricsEndpointsInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetricsEndpointsInner
impl<'de> Deserialize<'de> for MetricsEndpointsInner
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 MetricsEndpointsInner
impl PartialEq for MetricsEndpointsInner
Source§impl Serialize for MetricsEndpointsInner
impl Serialize for MetricsEndpointsInner
impl StructuralPartialEq for MetricsEndpointsInner
Auto Trait Implementations§
impl Freeze for MetricsEndpointsInner
impl RefUnwindSafe for MetricsEndpointsInner
impl Send for MetricsEndpointsInner
impl Sync for MetricsEndpointsInner
impl Unpin for MetricsEndpointsInner
impl UnwindSafe for MetricsEndpointsInner
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