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