pub struct FindingsReportSummary {
pub id: Option<String>,
pub profile_end_time: Option<f64>,
pub profile_start_time: Option<f64>,
pub profiling_group_name: Option<String>,
pub total_number_of_findings: Option<i64>,
}Expand description
Information about potential recommendations that might be created from the analysis of profiling data.
Fields§
§id: Option<String>The universally unique identifier (UUID) of the recommendation report.
profile_end_time: Option<f64>The end time of the period during which the metric is flagged as anomalous. This is specified 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.
profile_start_time: Option<f64>The start time of the profile the analysis data is about. This is specified 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.
profiling_group_name: Option<String>The name of the profiling group that is associated with the analysis data.
total_number_of_findings: Option<i64>The total number of different recommendations that were found by the analysis.
Trait Implementations§
Source§impl Clone for FindingsReportSummary
impl Clone for FindingsReportSummary
Source§fn clone(&self) -> FindingsReportSummary
fn clone(&self) -> FindingsReportSummary
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 FindingsReportSummary
impl Debug for FindingsReportSummary
Source§impl Default for FindingsReportSummary
impl Default for FindingsReportSummary
Source§fn default() -> FindingsReportSummary
fn default() -> FindingsReportSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FindingsReportSummary
impl<'de> Deserialize<'de> for FindingsReportSummary
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 FindingsReportSummary
impl PartialEq for FindingsReportSummary
impl StructuralPartialEq for FindingsReportSummary
Auto Trait Implementations§
impl Freeze for FindingsReportSummary
impl RefUnwindSafe for FindingsReportSummary
impl Send for FindingsReportSummary
impl Sync for FindingsReportSummary
impl Unpin for FindingsReportSummary
impl UnwindSafe for FindingsReportSummary
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