pub struct ProfilingStatus {
pub latest_agent_orchestrated_at: Option<f64>,
pub latest_agent_profile_reported_at: Option<f64>,
pub latest_aggregated_profile: Option<AggregatedProfileTime>,
}Expand description
Profiling status includes information about the last time a profile agent pinged back, the last time a profile was received, and the aggregation period and start time for the most recent aggregated profile.
Fields§
§latest_agent_orchestrated_at: Option<f64>The date and time when the profiling agent most recently pinged back. Specify using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
latest_agent_profile_reported_at: Option<f64>The date and time when the most recent profile was received. Specify using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
latest_aggregated_profile: Option<AggregatedProfileTime> An AggregatedProfileTime object that contains the aggregation period and start time for an aggregated profile.
Trait Implementations§
Source§impl Clone for ProfilingStatus
impl Clone for ProfilingStatus
Source§fn clone(&self) -> ProfilingStatus
fn clone(&self) -> ProfilingStatus
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 ProfilingStatus
impl Debug for ProfilingStatus
Source§impl Default for ProfilingStatus
impl Default for ProfilingStatus
Source§fn default() -> ProfilingStatus
fn default() -> ProfilingStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProfilingStatus
impl<'de> Deserialize<'de> for ProfilingStatus
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 ProfilingStatus
impl PartialEq for ProfilingStatus
impl StructuralPartialEq for ProfilingStatus
Auto Trait Implementations§
impl Freeze for ProfilingStatus
impl RefUnwindSafe for ProfilingStatus
impl Send for ProfilingStatus
impl Sync for ProfilingStatus
impl Unpin for ProfilingStatus
impl UnwindSafe for ProfilingStatus
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