pub struct StateMachineDef {
pub column: String,
pub transitions: Vec<(String, Vec<String>)>,
}Fields§
§column: String§transitions: Vec<(String, Vec<String>)>Trait Implementations§
Source§impl Clone for StateMachineDef
impl Clone for StateMachineDef
Source§fn clone(&self) -> StateMachineDef
fn clone(&self) -> StateMachineDef
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 moreAuto Trait Implementations§
impl Freeze for StateMachineDef
impl RefUnwindSafe for StateMachineDef
impl Send for StateMachineDef
impl Sync for StateMachineDef
impl Unpin for StateMachineDef
impl UnsafeUnpin for StateMachineDef
impl UnwindSafe for StateMachineDef
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