pub struct DescribeImagePermissionsResult {
pub name: Option<String>,
pub next_token: Option<String>,
pub shared_image_permissions_list: Option<Vec<SharedImagePermissions>>,
}
Fields§
§name: Option<String>
The name of the private image.
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.
The permissions for a private image that you own.
Trait Implementations§
Source§impl Clone for DescribeImagePermissionsResult
impl Clone for DescribeImagePermissionsResult
Source§fn clone(&self) -> DescribeImagePermissionsResult
fn clone(&self) -> DescribeImagePermissionsResult
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 Default for DescribeImagePermissionsResult
impl Default for DescribeImagePermissionsResult
Source§fn default() -> DescribeImagePermissionsResult
fn default() -> DescribeImagePermissionsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeImagePermissionsResult
impl<'de> Deserialize<'de> for DescribeImagePermissionsResult
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 DescribeImagePermissionsResult
impl PartialEq for DescribeImagePermissionsResult
Source§fn eq(&self, other: &DescribeImagePermissionsResult) -> bool
fn eq(&self, other: &DescribeImagePermissionsResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeImagePermissionsResult
Auto Trait Implementations§
impl Freeze for DescribeImagePermissionsResult
impl RefUnwindSafe for DescribeImagePermissionsResult
impl Send for DescribeImagePermissionsResult
impl Sync for DescribeImagePermissionsResult
impl Unpin for DescribeImagePermissionsResult
impl UnwindSafe for DescribeImagePermissionsResult
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