pub struct AutomatonTransition {
pub from: usize,
pub guard: VerifyExpr,
pub to: usize,
}Expand description
A transition in a Büchi automaton.
Fields§
§from: usize§guard: VerifyExpr§to: usizeTrait Implementations§
Source§impl Clone for AutomatonTransition
impl Clone for AutomatonTransition
Source§fn clone(&self) -> AutomatonTransition
fn clone(&self) -> AutomatonTransition
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 moreAuto Trait Implementations§
impl Freeze for AutomatonTransition
impl RefUnwindSafe for AutomatonTransition
impl Send for AutomatonTransition
impl Sync for AutomatonTransition
impl Unpin for AutomatonTransition
impl UnsafeUnpin for AutomatonTransition
impl UnwindSafe for AutomatonTransition
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