pub struct IcMetricQuery {
pub metric: IcMetricKind,
pub start_unix_secs: u64,
pub end_unix_secs: u64,
pub step_secs: u32,
}Expand description
IcMetricQuery
One explicitly bounded official Dashboard metric time-series query.
Fields§
§metric: IcMetricKindOfficial Dashboard metric to retrieve.
start_unix_secs: u64Inclusive query start as Unix seconds.
end_unix_secs: u64Inclusive query end as Unix seconds.
step_secs: u32Requested observation interval in seconds.
Implementations§
Source§impl IcMetricQuery
impl IcMetricQuery
Trait Implementations§
Source§impl Clone for IcMetricQuery
impl Clone for IcMetricQuery
Source§fn clone(&self) -> IcMetricQuery
fn clone(&self) -> IcMetricQuery
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 IcMetricQuery
impl Debug for IcMetricQuery
impl Eq for IcMetricQuery
Source§impl PartialEq for IcMetricQuery
impl PartialEq for IcMetricQuery
Source§impl Serialize for IcMetricQuery
impl Serialize for IcMetricQuery
impl StructuralPartialEq for IcMetricQuery
Auto Trait Implementations§
impl Freeze for IcMetricQuery
impl RefUnwindSafe for IcMetricQuery
impl Send for IcMetricQuery
impl Sync for IcMetricQuery
impl Unpin for IcMetricQuery
impl UnsafeUnpin for IcMetricQuery
impl UnwindSafe for IcMetricQuery
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