pub struct DescribeWorkspaceImagePermissionsResult {
pub image_id: Option<String>,
pub image_permissions: Option<Vec<ImagePermission>>,
pub next_token: Option<String>,
}
Fields§
§image_id: Option<String>
The identifier of the image.
image_permissions: Option<Vec<ImagePermission>>
The identifiers of the AWS accounts that the image has been shared with.
next_token: Option<String>
The token to use to retrieve the next page of results. This value is null when there are no more results to return.
Trait Implementations§
Source§impl Clone for DescribeWorkspaceImagePermissionsResult
impl Clone for DescribeWorkspaceImagePermissionsResult
Source§fn clone(&self) -> DescribeWorkspaceImagePermissionsResult
fn clone(&self) -> DescribeWorkspaceImagePermissionsResult
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 DescribeWorkspaceImagePermissionsResult
impl Default for DescribeWorkspaceImagePermissionsResult
Source§fn default() -> DescribeWorkspaceImagePermissionsResult
fn default() -> DescribeWorkspaceImagePermissionsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeWorkspaceImagePermissionsResult
impl<'de> Deserialize<'de> for DescribeWorkspaceImagePermissionsResult
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 DescribeWorkspaceImagePermissionsResult
impl PartialEq for DescribeWorkspaceImagePermissionsResult
Source§fn eq(&self, other: &DescribeWorkspaceImagePermissionsResult) -> bool
fn eq(&self, other: &DescribeWorkspaceImagePermissionsResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeWorkspaceImagePermissionsResult
Auto Trait Implementations§
impl Freeze for DescribeWorkspaceImagePermissionsResult
impl RefUnwindSafe for DescribeWorkspaceImagePermissionsResult
impl Send for DescribeWorkspaceImagePermissionsResult
impl Sync for DescribeWorkspaceImagePermissionsResult
impl Unpin for DescribeWorkspaceImagePermissionsResult
impl UnwindSafe for DescribeWorkspaceImagePermissionsResult
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