pub struct DescribeImagesResult {
pub images: Option<Vec<Image>>,
pub next_token: Option<String>,
}
Fields§
§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.
Trait Implementations§
Source§impl Clone for DescribeImagesResult
impl Clone for DescribeImagesResult
Source§fn clone(&self) -> DescribeImagesResult
fn clone(&self) -> DescribeImagesResult
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 DescribeImagesResult
impl Debug for DescribeImagesResult
Source§impl Default for DescribeImagesResult
impl Default for DescribeImagesResult
Source§fn default() -> DescribeImagesResult
fn default() -> DescribeImagesResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeImagesResult
impl<'de> Deserialize<'de> for DescribeImagesResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeImagesResult
impl PartialEq for DescribeImagesResult
impl StructuralPartialEq for DescribeImagesResult
Auto Trait Implementations§
impl Freeze for DescribeImagesResult
impl RefUnwindSafe for DescribeImagesResult
impl Send for DescribeImagesResult
impl Sync for DescribeImagesResult
impl Unpin for DescribeImagesResult
impl UnwindSafe for DescribeImagesResult
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