#[non_exhaustive]pub struct ListPackageVersionsInput {
pub package_name: Option<String>,
pub status: Option<PackageVersionStatus>,
pub max_results: Option<i32>,
pub next_token: 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.package_name: Option<String>The name of the target software package.
status: Option<PackageVersionStatus>The status of the package version. For more information, see Package version lifecycle.
max_results: Option<i32>The maximum number of results to return at one time.
next_token: Option<String>The token for the next set of results.
Implementations§
source§impl ListPackageVersionsInput
impl ListPackageVersionsInput
sourcepub fn package_name(&self) -> Option<&str>
pub fn package_name(&self) -> Option<&str>
The name of the target software package.
sourcepub fn status(&self) -> Option<&PackageVersionStatus>
pub fn status(&self) -> Option<&PackageVersionStatus>
The status of the package version. For more information, see Package version lifecycle.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return at one time.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results.
source§impl ListPackageVersionsInput
impl ListPackageVersionsInput
sourcepub fn builder() -> ListPackageVersionsInputBuilder
pub fn builder() -> ListPackageVersionsInputBuilder
Creates a new builder-style object to manufacture ListPackageVersionsInput.
Trait Implementations§
source§impl Clone for ListPackageVersionsInput
impl Clone for ListPackageVersionsInput
source§fn clone(&self) -> ListPackageVersionsInput
fn clone(&self) -> ListPackageVersionsInput
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 ListPackageVersionsInput
impl Debug for ListPackageVersionsInput
source§impl PartialEq for ListPackageVersionsInput
impl PartialEq for ListPackageVersionsInput
source§fn eq(&self, other: &ListPackageVersionsInput) -> bool
fn eq(&self, other: &ListPackageVersionsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListPackageVersionsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListPackageVersionsInput
impl Send for ListPackageVersionsInput
impl Sync for ListPackageVersionsInput
impl Unpin for ListPackageVersionsInput
impl UnwindSafe for ListPackageVersionsInput
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.