pub struct AutomatonState {
pub id: usize,
pub label: String,
}Expand description
A state in a Büchi automaton.
Fields§
§id: usize§label: StringTrait Implementations§
Source§impl Clone for AutomatonState
impl Clone for AutomatonState
Source§fn clone(&self) -> AutomatonState
fn clone(&self) -> AutomatonState
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 moreSource§impl Debug for AutomatonState
impl Debug for AutomatonState
Source§impl Hash for AutomatonState
impl Hash for AutomatonState
Source§impl PartialEq for AutomatonState
impl PartialEq for AutomatonState
Source§fn eq(&self, other: &AutomatonState) -> bool
fn eq(&self, other: &AutomatonState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AutomatonState
impl StructuralPartialEq for AutomatonState
Auto Trait Implementations§
impl Freeze for AutomatonState
impl RefUnwindSafe for AutomatonState
impl Send for AutomatonState
impl Sync for AutomatonState
impl Unpin for AutomatonState
impl UnsafeUnpin for AutomatonState
impl UnwindSafe for AutomatonState
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