pub enum CTLFormulaLeaf<AP> {
True,
False,
AtomicProp(AP),
}Expand description
The leaves of a CTLFormula : the boolean constants and the user-defined atomic propositions.
Variants§
Trait Implementations§
Source§impl<AP: Clone> Clone for CTLFormulaLeaf<AP>
impl<AP: Clone> Clone for CTLFormulaLeaf<AP>
Source§impl<AP: Debug> Debug for CTLFormulaLeaf<AP>
impl<AP: Debug> Debug for CTLFormulaLeaf<AP>
impl<AP: Eq> Eq for CTLFormulaLeaf<AP>
Source§impl<AP: Hash> Hash for CTLFormulaLeaf<AP>
impl<AP: Hash> Hash for CTLFormulaLeaf<AP>
Source§impl<AP: PartialEq> PartialEq for CTLFormulaLeaf<AP>
impl<AP: PartialEq> PartialEq for CTLFormulaLeaf<AP>
impl<AP: PartialEq> StructuralPartialEq for CTLFormulaLeaf<AP>
Auto Trait Implementations§
impl<AP> Freeze for CTLFormulaLeaf<AP>where
AP: Freeze,
impl<AP> RefUnwindSafe for CTLFormulaLeaf<AP>where
AP: RefUnwindSafe,
impl<AP> Send for CTLFormulaLeaf<AP>where
AP: Send,
impl<AP> Sync for CTLFormulaLeaf<AP>where
AP: Sync,
impl<AP> Unpin for CTLFormulaLeaf<AP>where
AP: Unpin,
impl<AP> UnsafeUnpin for CTLFormulaLeaf<AP>where
AP: UnsafeUnpin,
impl<AP> UnwindSafe for CTLFormulaLeaf<AP>where
AP: UnwindSafe,
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