#[non_exhaustive]pub struct DescribeImagesOutput {
pub images: Option<Vec<Image>>,
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.images: Option<Vec<Image>>
Information about the images.
next_token: Option<String>
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
Implementations§
source§impl DescribeImagesOutput
impl DescribeImagesOutput
sourcepub fn images(&self) -> &[Image]
pub fn images(&self) -> &[Image]
Information about the images.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .images.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
source§impl DescribeImagesOutput
impl DescribeImagesOutput
sourcepub fn builder() -> DescribeImagesOutputBuilder
pub fn builder() -> DescribeImagesOutputBuilder
Creates a new builder-style object to manufacture DescribeImagesOutput
.
Trait Implementations§
source§impl Clone for DescribeImagesOutput
impl Clone for DescribeImagesOutput
source§fn clone(&self) -> DescribeImagesOutput
fn clone(&self) -> DescribeImagesOutput
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 DescribeImagesOutput
impl Debug for DescribeImagesOutput
source§impl PartialEq for DescribeImagesOutput
impl PartialEq for DescribeImagesOutput
source§fn eq(&self, other: &DescribeImagesOutput) -> bool
fn eq(&self, other: &DescribeImagesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeImagesOutput
impl RequestId for DescribeImagesOutput
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 DescribeImagesOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeImagesOutput
impl Send for DescribeImagesOutput
impl Sync for DescribeImagesOutput
impl Unpin for DescribeImagesOutput
impl UnwindSafe for DescribeImagesOutput
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.