pub struct ListImagePackagesResponse {
pub image_package_list: Option<Vec<ImagePackage>>,
pub next_token: Option<String>,
pub request_id: Option<String>,
}Fields§
§image_package_list: Option<Vec<ImagePackage>>The list of Image Packages returned in the response.
next_token: Option<String>A token to specify where to start paginating. This is the NextToken from a previously truncated response.
request_id: Option<String>The request ID that uniquely identifies this request.
Trait Implementations§
Source§impl Clone for ListImagePackagesResponse
impl Clone for ListImagePackagesResponse
Source§fn clone(&self) -> ListImagePackagesResponse
fn clone(&self) -> ListImagePackagesResponse
Returns a duplicate 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 ListImagePackagesResponse
impl Debug for ListImagePackagesResponse
Source§impl Default for ListImagePackagesResponse
impl Default for ListImagePackagesResponse
Source§fn default() -> ListImagePackagesResponse
fn default() -> ListImagePackagesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListImagePackagesResponse
impl<'de> Deserialize<'de> for ListImagePackagesResponse
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
impl StructuralPartialEq for ListImagePackagesResponse
Auto Trait Implementations§
impl Freeze for ListImagePackagesResponse
impl RefUnwindSafe for ListImagePackagesResponse
impl Send for ListImagePackagesResponse
impl Sync for ListImagePackagesResponse
impl Unpin for ListImagePackagesResponse
impl UnwindSafe for ListImagePackagesResponse
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