pub struct DescribeDocumentVersionsResponse {
pub document_versions: Option<Vec<DocumentVersionMetadata>>,
pub marker: Option<String>,
}
Fields§
§document_versions: Option<Vec<DocumentVersionMetadata>>
The document versions.
marker: Option<String>
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
Trait Implementations§
Source§impl Clone for DescribeDocumentVersionsResponse
impl Clone for DescribeDocumentVersionsResponse
Source§fn clone(&self) -> DescribeDocumentVersionsResponse
fn clone(&self) -> DescribeDocumentVersionsResponse
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 DescribeDocumentVersionsResponse
impl Default for DescribeDocumentVersionsResponse
Source§fn default() -> DescribeDocumentVersionsResponse
fn default() -> DescribeDocumentVersionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeDocumentVersionsResponse
impl<'de> Deserialize<'de> for DescribeDocumentVersionsResponse
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 DescribeDocumentVersionsResponse
impl PartialEq for DescribeDocumentVersionsResponse
Source§fn eq(&self, other: &DescribeDocumentVersionsResponse) -> bool
fn eq(&self, other: &DescribeDocumentVersionsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeDocumentVersionsResponse
Auto Trait Implementations§
impl Freeze for DescribeDocumentVersionsResponse
impl RefUnwindSafe for DescribeDocumentVersionsResponse
impl Send for DescribeDocumentVersionsResponse
impl Sync for DescribeDocumentVersionsResponse
impl Unpin for DescribeDocumentVersionsResponse
impl UnwindSafe for DescribeDocumentVersionsResponse
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