pub struct StateMachineAlias {
pub name: String,
pub arn: String,
pub description: String,
pub routing_configuration: Vec<AliasRoute>,
pub creation_date: DateTime<Utc>,
pub update_date: DateTime<Utc>,
}Fields§
§name: String§arn: String§description: String§routing_configuration: Vec<AliasRoute>§creation_date: DateTime<Utc>§update_date: DateTime<Utc>Trait Implementations§
Source§impl Clone for StateMachineAlias
impl Clone for StateMachineAlias
Source§fn clone(&self) -> StateMachineAlias
fn clone(&self) -> StateMachineAlias
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 StateMachineAlias
impl Debug for StateMachineAlias
Source§impl<'de> Deserialize<'de> for StateMachineAlias
impl<'de> Deserialize<'de> for StateMachineAlias
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 StateMachineAlias
impl RefUnwindSafe for StateMachineAlias
impl Send for StateMachineAlias
impl Sync for StateMachineAlias
impl Unpin for StateMachineAlias
impl UnsafeUnpin for StateMachineAlias
impl UnwindSafe for StateMachineAlias
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