pub struct StateMachineVersion {
pub state_machine_arn: String,
pub version: i64,
pub revision_id: String,
pub description: String,
pub creation_date: DateTime<Utc>,
}Fields§
§state_machine_arn: String§version: i64§revision_id: String§description: String§creation_date: DateTime<Utc>Trait Implementations§
Source§impl Clone for StateMachineVersion
impl Clone for StateMachineVersion
Source§fn clone(&self) -> StateMachineVersion
fn clone(&self) -> StateMachineVersion
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 StateMachineVersion
impl Debug for StateMachineVersion
Source§impl<'de> Deserialize<'de> for StateMachineVersion
impl<'de> Deserialize<'de> for StateMachineVersion
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 StateMachineVersion
impl RefUnwindSafe for StateMachineVersion
impl Send for StateMachineVersion
impl Sync for StateMachineVersion
impl Unpin for StateMachineVersion
impl UnsafeUnpin for StateMachineVersion
impl UnwindSafe for StateMachineVersion
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