#[non_exhaustive]pub struct ManagedMachineLearningDiagnosticsConfig {
pub enabled: Option<bool>,
/* private fields */
}Expand description
ManagedMachineLearningDiagnosticsConfig is the configuration for the GKE Managed Machine Learning Diagnostics pipeline.
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.enabled: Option<bool>Enable/Disable Managed Machine Learning Diagnostics.
Implementations§
Source§impl ManagedMachineLearningDiagnosticsConfig
impl ManagedMachineLearningDiagnosticsConfig
Sourcepub fn set_enabled<T>(self, v: T) -> Self
pub fn set_enabled<T>(self, v: T) -> Self
Sourcepub fn set_or_clear_enabled<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_enabled<T>(self, v: Option<T>) -> Self
Trait Implementations§
Source§impl Clone for ManagedMachineLearningDiagnosticsConfig
impl Clone for ManagedMachineLearningDiagnosticsConfig
Source§fn clone(&self) -> ManagedMachineLearningDiagnosticsConfig
fn clone(&self) -> ManagedMachineLearningDiagnosticsConfig
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 Default for ManagedMachineLearningDiagnosticsConfig
impl Default for ManagedMachineLearningDiagnosticsConfig
Source§fn default() -> ManagedMachineLearningDiagnosticsConfig
fn default() -> ManagedMachineLearningDiagnosticsConfig
Returns the “default value” for a type. Read more
Source§impl PartialEq for ManagedMachineLearningDiagnosticsConfig
impl PartialEq for ManagedMachineLearningDiagnosticsConfig
Source§fn eq(&self, other: &ManagedMachineLearningDiagnosticsConfig) -> bool
fn eq(&self, other: &ManagedMachineLearningDiagnosticsConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ManagedMachineLearningDiagnosticsConfig
Auto Trait Implementations§
impl Freeze for ManagedMachineLearningDiagnosticsConfig
impl RefUnwindSafe for ManagedMachineLearningDiagnosticsConfig
impl Send for ManagedMachineLearningDiagnosticsConfig
impl Sync for ManagedMachineLearningDiagnosticsConfig
impl Unpin for ManagedMachineLearningDiagnosticsConfig
impl UnsafeUnpin for ManagedMachineLearningDiagnosticsConfig
impl UnwindSafe for ManagedMachineLearningDiagnosticsConfig
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