#[non_exhaustive]pub struct SearchModelDeploymentMonitoringStatsAnomaliesResponse {
pub monitoring_stats: Vec<ModelMonitoringStatsAnomalies>,
pub next_page_token: String,
/* private fields */
}Expand description
Response message for JobService.SearchModelDeploymentMonitoringStatsAnomalies.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.monitoring_stats: Vec<ModelMonitoringStatsAnomalies>Stats retrieved for requested objectives. There are at most 1000 ModelMonitoringStatsAnomalies.FeatureHistoricStatsAnomalies.prediction_stats in the response.
next_page_token: StringThe page token that can be used by the next JobService.SearchModelDeploymentMonitoringStatsAnomalies call.
Implementations§
Source§impl SearchModelDeploymentMonitoringStatsAnomaliesResponse
impl SearchModelDeploymentMonitoringStatsAnomaliesResponse
pub fn new() -> Self
Sourcepub fn set_monitoring_stats<T, V>(self, v: T) -> Self
pub fn set_monitoring_stats<T, V>(self, v: T) -> Self
Sets the value of monitoring_stats.
Sourcepub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of next_page_token.
Trait Implementations§
Source§impl Clone for SearchModelDeploymentMonitoringStatsAnomaliesResponse
impl Clone for SearchModelDeploymentMonitoringStatsAnomaliesResponse
Source§fn clone(&self) -> SearchModelDeploymentMonitoringStatsAnomaliesResponse
fn clone(&self) -> SearchModelDeploymentMonitoringStatsAnomaliesResponse
Returns a copy 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 Default for SearchModelDeploymentMonitoringStatsAnomaliesResponse
impl Default for SearchModelDeploymentMonitoringStatsAnomaliesResponse
Source§fn default() -> SearchModelDeploymentMonitoringStatsAnomaliesResponse
fn default() -> SearchModelDeploymentMonitoringStatsAnomaliesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchModelDeploymentMonitoringStatsAnomaliesResponse
impl<'de> Deserialize<'de> for SearchModelDeploymentMonitoringStatsAnomaliesResponse
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 SearchModelDeploymentMonitoringStatsAnomaliesResponse
impl PartialEq for SearchModelDeploymentMonitoringStatsAnomaliesResponse
Source§fn eq(
&self,
other: &SearchModelDeploymentMonitoringStatsAnomaliesResponse,
) -> bool
fn eq( &self, other: &SearchModelDeploymentMonitoringStatsAnomaliesResponse, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SearchModelDeploymentMonitoringStatsAnomaliesResponse
Auto Trait Implementations§
impl Freeze for SearchModelDeploymentMonitoringStatsAnomaliesResponse
impl RefUnwindSafe for SearchModelDeploymentMonitoringStatsAnomaliesResponse
impl Send for SearchModelDeploymentMonitoringStatsAnomaliesResponse
impl Sync for SearchModelDeploymentMonitoringStatsAnomaliesResponse
impl Unpin for SearchModelDeploymentMonitoringStatsAnomaliesResponse
impl UnwindSafe for SearchModelDeploymentMonitoringStatsAnomaliesResponse
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