#[non_exhaustive]pub struct GetMlTransformInput {
pub transform_id: 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.transform_id: Option<String>The unique identifier of the transform, generated at the time that the transform was created.
Implementations§
source§impl GetMlTransformInput
impl GetMlTransformInput
sourcepub fn transform_id(&self) -> Option<&str>
pub fn transform_id(&self) -> Option<&str>
The unique identifier of the transform, generated at the time that the transform was created.
source§impl GetMlTransformInput
impl GetMlTransformInput
sourcepub fn builder() -> GetMlTransformInputBuilder
pub fn builder() -> GetMlTransformInputBuilder
Creates a new builder-style object to manufacture GetMlTransformInput.
Trait Implementations§
source§impl Clone for GetMlTransformInput
impl Clone for GetMlTransformInput
source§fn clone(&self) -> GetMlTransformInput
fn clone(&self) -> GetMlTransformInput
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 GetMlTransformInput
impl Debug for GetMlTransformInput
source§impl PartialEq for GetMlTransformInput
impl PartialEq for GetMlTransformInput
source§fn eq(&self, other: &GetMlTransformInput) -> bool
fn eq(&self, other: &GetMlTransformInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetMlTransformInput
Auto Trait Implementations§
impl RefUnwindSafe for GetMlTransformInput
impl Send for GetMlTransformInput
impl Sync for GetMlTransformInput
impl Unpin for GetMlTransformInput
impl UnwindSafe for GetMlTransformInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.