#[non_exhaustive]pub struct StopAutoMlJobInput {
pub auto_ml_job_name: Option<String>,
}
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.auto_ml_job_name: Option<String>
The name of the object you are requesting.
Implementations§
source§impl StopAutoMlJobInput
impl StopAutoMlJobInput
sourcepub fn auto_ml_job_name(&self) -> Option<&str>
pub fn auto_ml_job_name(&self) -> Option<&str>
The name of the object you are requesting.
source§impl StopAutoMlJobInput
impl StopAutoMlJobInput
sourcepub fn builder() -> StopAutoMlJobInputBuilder
pub fn builder() -> StopAutoMlJobInputBuilder
Creates a new builder-style object to manufacture StopAutoMlJobInput
.
Trait Implementations§
source§impl Clone for StopAutoMlJobInput
impl Clone for StopAutoMlJobInput
source§fn clone(&self) -> StopAutoMlJobInput
fn clone(&self) -> StopAutoMlJobInput
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 Debug for StopAutoMlJobInput
impl Debug for StopAutoMlJobInput
source§impl PartialEq<StopAutoMlJobInput> for StopAutoMlJobInput
impl PartialEq<StopAutoMlJobInput> for StopAutoMlJobInput
source§fn eq(&self, other: &StopAutoMlJobInput) -> bool
fn eq(&self, other: &StopAutoMlJobInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StopAutoMlJobInput
Auto Trait Implementations§
impl RefUnwindSafe for StopAutoMlJobInput
impl Send for StopAutoMlJobInput
impl Sync for StopAutoMlJobInput
impl Unpin for StopAutoMlJobInput
impl UnwindSafe for StopAutoMlJobInput
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