#[non_exhaustive]pub struct ListRegistriesOutput {
pub registries: Option<Vec<RegistryListItem>>,
pub next_token: Option<String>,
/* private fields */
}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.registries: Option<Vec<RegistryListItem>>An array of RegistryDetailedListItem objects containing minimal details of each registry.
next_token: Option<String>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.
Implementations§
source§impl ListRegistriesOutput
impl ListRegistriesOutput
sourcepub fn registries(&self) -> Option<&[RegistryListItem]>
pub fn registries(&self) -> Option<&[RegistryListItem]>
An array of RegistryDetailedListItem objects containing minimal details of each registry.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.
source§impl ListRegistriesOutput
impl ListRegistriesOutput
sourcepub fn builder() -> ListRegistriesOutputBuilder
pub fn builder() -> ListRegistriesOutputBuilder
Creates a new builder-style object to manufacture ListRegistriesOutput.
Trait Implementations§
source§impl Clone for ListRegistriesOutput
impl Clone for ListRegistriesOutput
source§fn clone(&self) -> ListRegistriesOutput
fn clone(&self) -> ListRegistriesOutput
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 ListRegistriesOutput
impl Debug for ListRegistriesOutput
source§impl PartialEq<ListRegistriesOutput> for ListRegistriesOutput
impl PartialEq<ListRegistriesOutput> for ListRegistriesOutput
source§fn eq(&self, other: &ListRegistriesOutput) -> bool
fn eq(&self, other: &ListRegistriesOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ListRegistriesOutput
impl RequestId for ListRegistriesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for ListRegistriesOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListRegistriesOutput
impl Send for ListRegistriesOutput
impl Sync for ListRegistriesOutput
impl Unpin for ListRegistriesOutput
impl UnwindSafe for ListRegistriesOutput
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