pub struct SsmDocumentVersion {
pub content: String,
pub document_version: String,
pub version_name: Option<String>,
pub created_date: DateTime<Utc>,
pub status: String,
pub document_format: String,
pub is_default_version: bool,
}Fields§
§content: String§document_version: String§version_name: Option<String>§created_date: DateTime<Utc>§status: String§document_format: String§is_default_version: boolTrait Implementations§
Source§impl Clone for SsmDocumentVersion
impl Clone for SsmDocumentVersion
Source§fn clone(&self) -> SsmDocumentVersion
fn clone(&self) -> SsmDocumentVersion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SsmDocumentVersion
impl Debug for SsmDocumentVersion
Source§impl<'de> Deserialize<'de> for SsmDocumentVersion
impl<'de> Deserialize<'de> for SsmDocumentVersion
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
Auto Trait Implementations§
impl Freeze for SsmDocumentVersion
impl RefUnwindSafe for SsmDocumentVersion
impl Send for SsmDocumentVersion
impl Sync for SsmDocumentVersion
impl Unpin for SsmDocumentVersion
impl UnsafeUnpin for SsmDocumentVersion
impl UnwindSafe for SsmDocumentVersion
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