#[non_exhaustive]pub struct DescribeConversionWorkspaceRevisionsResponse {
pub revisions: Vec<ConversionWorkspace>,
/* private fields */
}Expand description
Response message for ‘DescribeConversionWorkspaceRevisions’ request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.revisions: Vec<ConversionWorkspace>The list of conversion workspace revisions.
Implementations§
Source§impl DescribeConversionWorkspaceRevisionsResponse
impl DescribeConversionWorkspaceRevisionsResponse
pub fn new() -> Self
Sourcepub fn set_revisions<T, V>(self, v: T) -> Self
pub fn set_revisions<T, V>(self, v: T) -> Self
Sets the value of revisions.
Trait Implementations§
Source§impl Clone for DescribeConversionWorkspaceRevisionsResponse
impl Clone for DescribeConversionWorkspaceRevisionsResponse
Source§fn clone(&self) -> DescribeConversionWorkspaceRevisionsResponse
fn clone(&self) -> DescribeConversionWorkspaceRevisionsResponse
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 DescribeConversionWorkspaceRevisionsResponse
impl Default for DescribeConversionWorkspaceRevisionsResponse
Source§fn default() -> DescribeConversionWorkspaceRevisionsResponse
fn default() -> DescribeConversionWorkspaceRevisionsResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeConversionWorkspaceRevisionsResponse
impl PartialEq for DescribeConversionWorkspaceRevisionsResponse
Source§fn eq(&self, other: &DescribeConversionWorkspaceRevisionsResponse) -> bool
fn eq(&self, other: &DescribeConversionWorkspaceRevisionsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeConversionWorkspaceRevisionsResponse
Auto Trait Implementations§
impl Freeze for DescribeConversionWorkspaceRevisionsResponse
impl RefUnwindSafe for DescribeConversionWorkspaceRevisionsResponse
impl Send for DescribeConversionWorkspaceRevisionsResponse
impl Sync for DescribeConversionWorkspaceRevisionsResponse
impl Unpin for DescribeConversionWorkspaceRevisionsResponse
impl UnwindSafe for DescribeConversionWorkspaceRevisionsResponse
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