pub struct DescribeWorkspaceImagesResult {
pub images: Option<Vec<WorkspaceImage>>,
pub next_token: Option<String>,
}Fields§
§images: Option<Vec<WorkspaceImage>>Information about the images.
next_token: Option<String>The token to use to retrieve the next set of results, or null if no more results are available.
Trait Implementations§
Source§impl Clone for DescribeWorkspaceImagesResult
impl Clone for DescribeWorkspaceImagesResult
Source§fn clone(&self) -> DescribeWorkspaceImagesResult
fn clone(&self) -> DescribeWorkspaceImagesResult
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 DescribeWorkspaceImagesResult
impl Default for DescribeWorkspaceImagesResult
Source§fn default() -> DescribeWorkspaceImagesResult
fn default() -> DescribeWorkspaceImagesResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeWorkspaceImagesResult
impl<'de> Deserialize<'de> for DescribeWorkspaceImagesResult
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 DescribeWorkspaceImagesResult
impl PartialEq for DescribeWorkspaceImagesResult
Source§fn eq(&self, other: &DescribeWorkspaceImagesResult) -> bool
fn eq(&self, other: &DescribeWorkspaceImagesResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeWorkspaceImagesResult
Auto Trait Implementations§
impl Freeze for DescribeWorkspaceImagesResult
impl RefUnwindSafe for DescribeWorkspaceImagesResult
impl Send for DescribeWorkspaceImagesResult
impl Sync for DescribeWorkspaceImagesResult
impl Unpin for DescribeWorkspaceImagesResult
impl UnwindSafe for DescribeWorkspaceImagesResult
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