pub struct TransitionAttempt {
pub from_state: String,
pub to_state: String,
}Fields§
§from_state: String§to_state: StringTrait Implementations§
Source§impl Clone for TransitionAttempt
impl Clone for TransitionAttempt
Source§fn clone(&self) -> TransitionAttempt
fn clone(&self) -> TransitionAttempt
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 TransitionAttempt
impl Debug for TransitionAttempt
Source§impl<'de> Deserialize<'de> for TransitionAttempt
impl<'de> Deserialize<'de> for TransitionAttempt
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 TransitionAttempt
impl RefUnwindSafe for TransitionAttempt
impl Send for TransitionAttempt
impl Sync for TransitionAttempt
impl Unpin for TransitionAttempt
impl UnsafeUnpin for TransitionAttempt
impl UnwindSafe for TransitionAttempt
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