struct BelowStateMachineEdge {
action: Action,
next_state: BelowState,
}
Fields§
§action: Action
§next_state: BelowState
Implementations§
Source§impl BelowStateMachineEdge
impl BelowStateMachineEdge
const fn new(action: Action, next_state: BelowState) -> Self
Trait Implementations§
Source§impl Clone for BelowStateMachineEdge
impl Clone for BelowStateMachineEdge
Source§fn clone(&self) -> BelowStateMachineEdge
fn clone(&self) -> BelowStateMachineEdge
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 moreimpl Copy for BelowStateMachineEdge
Auto Trait Implementations§
impl Freeze for BelowStateMachineEdge
impl RefUnwindSafe for BelowStateMachineEdge
impl Send for BelowStateMachineEdge
impl Sync for BelowStateMachineEdge
impl Unpin for BelowStateMachineEdge
impl UnwindSafe for BelowStateMachineEdge
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