#[non_exhaustive]pub struct DescribeModelPackageInput {
pub model_package_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.model_package_name: Option<String>
The name or Amazon Resource Name (ARN) of the model package to describe.
When you specify a name, the name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
Implementations§
source§impl DescribeModelPackageInput
impl DescribeModelPackageInput
sourcepub fn model_package_name(&self) -> Option<&str>
pub fn model_package_name(&self) -> Option<&str>
The name or Amazon Resource Name (ARN) of the model package to describe.
When you specify a name, the name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
source§impl DescribeModelPackageInput
impl DescribeModelPackageInput
sourcepub fn builder() -> DescribeModelPackageInputBuilder
pub fn builder() -> DescribeModelPackageInputBuilder
Creates a new builder-style object to manufacture DescribeModelPackageInput
.
Trait Implementations§
source§impl Clone for DescribeModelPackageInput
impl Clone for DescribeModelPackageInput
source§fn clone(&self) -> DescribeModelPackageInput
fn clone(&self) -> DescribeModelPackageInput
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 DescribeModelPackageInput
impl Debug for DescribeModelPackageInput
source§impl PartialEq for DescribeModelPackageInput
impl PartialEq for DescribeModelPackageInput
source§fn eq(&self, other: &DescribeModelPackageInput) -> bool
fn eq(&self, other: &DescribeModelPackageInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeModelPackageInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeModelPackageInput
impl Send for DescribeModelPackageInput
impl Sync for DescribeModelPackageInput
impl Unpin for DescribeModelPackageInput
impl UnwindSafe for DescribeModelPackageInput
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.