Struct aws_sdk_sagemaker::operation::delete_trial::DeleteTrialInput
source · #[non_exhaustive]pub struct DeleteTrialInput {
pub trial_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.trial_name: Option<String>
The name of the trial to delete.
Implementations§
source§impl DeleteTrialInput
impl DeleteTrialInput
sourcepub fn trial_name(&self) -> Option<&str>
pub fn trial_name(&self) -> Option<&str>
The name of the trial to delete.
source§impl DeleteTrialInput
impl DeleteTrialInput
sourcepub fn builder() -> DeleteTrialInputBuilder
pub fn builder() -> DeleteTrialInputBuilder
Creates a new builder-style object to manufacture DeleteTrialInput
.
Trait Implementations§
source§impl Clone for DeleteTrialInput
impl Clone for DeleteTrialInput
source§fn clone(&self) -> DeleteTrialInput
fn clone(&self) -> DeleteTrialInput
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 DeleteTrialInput
impl Debug for DeleteTrialInput
source§impl PartialEq<DeleteTrialInput> for DeleteTrialInput
impl PartialEq<DeleteTrialInput> for DeleteTrialInput
source§fn eq(&self, other: &DeleteTrialInput) -> bool
fn eq(&self, other: &DeleteTrialInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteTrialInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteTrialInput
impl Send for DeleteTrialInput
impl Sync for DeleteTrialInput
impl Unpin for DeleteTrialInput
impl UnwindSafe for DeleteTrialInput
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