pub struct GetRecommendationsResponse {
pub anomalies: Vec<Anomaly>,
pub profile_end_time: f64,
pub profile_start_time: f64,
pub profiling_group_name: String,
pub recommendations: Vec<Recommendation>,
}Expand description
The structure representing the GetRecommendationsResponse.
Fields§
§anomalies: Vec<Anomaly>The list of anomalies that the analysis has found for this profile.
profile_end_time: f64The end 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.
profile_start_time: f64The 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: StringThe name of the profiling group the analysis data is about.
recommendations: Vec<Recommendation>The list of recommendations that the analysis found for this profile.
Trait Implementations§
Source§impl Clone for GetRecommendationsResponse
impl Clone for GetRecommendationsResponse
Source§fn clone(&self) -> GetRecommendationsResponse
fn clone(&self) -> GetRecommendationsResponse
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 GetRecommendationsResponse
impl Debug for GetRecommendationsResponse
Source§impl Default for GetRecommendationsResponse
impl Default for GetRecommendationsResponse
Source§fn default() -> GetRecommendationsResponse
fn default() -> GetRecommendationsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetRecommendationsResponse
impl<'de> Deserialize<'de> for GetRecommendationsResponse
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
impl StructuralPartialEq for GetRecommendationsResponse
Auto Trait Implementations§
impl Freeze for GetRecommendationsResponse
impl RefUnwindSafe for GetRecommendationsResponse
impl Send for GetRecommendationsResponse
impl Sync for GetRecommendationsResponse
impl Unpin for GetRecommendationsResponse
impl UnwindSafe for GetRecommendationsResponse
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