pub struct StateClassEdge {
pub from: usize,
pub to: usize,
pub transition_name: String,
pub branch_index: usize,
}Expand description
Edge in the state class graph representing a transition firing.
Fields§
§from: usize§to: usize§transition_name: String§branch_index: usizeTrait Implementations§
Source§impl Clone for StateClassEdge
impl Clone for StateClassEdge
Source§fn clone(&self) -> StateClassEdge
fn clone(&self) -> StateClassEdge
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 StateClassEdge
impl RefUnwindSafe for StateClassEdge
impl Send for StateClassEdge
impl Sync for StateClassEdge
impl Unpin for StateClassEdge
impl UnsafeUnpin for StateClassEdge
impl UnwindSafe for StateClassEdge
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