pub struct DescribeWorkspaceImagesRequest {
pub image_ids: Option<Vec<String>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§image_ids: Option<Vec<String>>The identifier of the image.
max_results: Option<i64>The maximum number of items to return.
next_token: Option<String>If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
Trait Implementations§
Source§impl Clone for DescribeWorkspaceImagesRequest
impl Clone for DescribeWorkspaceImagesRequest
Source§fn clone(&self) -> DescribeWorkspaceImagesRequest
fn clone(&self) -> DescribeWorkspaceImagesRequest
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 DescribeWorkspaceImagesRequest
impl Default for DescribeWorkspaceImagesRequest
Source§fn default() -> DescribeWorkspaceImagesRequest
fn default() -> DescribeWorkspaceImagesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeWorkspaceImagesRequest
impl PartialEq for DescribeWorkspaceImagesRequest
Source§fn eq(&self, other: &DescribeWorkspaceImagesRequest) -> bool
fn eq(&self, other: &DescribeWorkspaceImagesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeWorkspaceImagesRequest
Auto Trait Implementations§
impl Freeze for DescribeWorkspaceImagesRequest
impl RefUnwindSafe for DescribeWorkspaceImagesRequest
impl Send for DescribeWorkspaceImagesRequest
impl Sync for DescribeWorkspaceImagesRequest
impl Unpin for DescribeWorkspaceImagesRequest
impl UnwindSafe for DescribeWorkspaceImagesRequest
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