pub struct AbstractStateItem<'tcx> {
    pub value: (Value, Value),
    pub vtype: VType<'tcx>,
    pub state: HashSet<StateType<'tcx>>,
}Fields§
§value: (Value, Value)§vtype: VType<'tcx>§state: HashSet<StateType<'tcx>>Implementations§
Source§impl<'tcx> AbstractStateItem<'tcx>
 
impl<'tcx> AbstractStateItem<'tcx>
pub fn new( value: (Value, Value), vtype: VType<'tcx>, state: HashSet<StateType<'tcx>>, ) -> Self
pub fn new_default() -> Self
pub fn meet_state_item(&mut self, other_state: &AbstractStateItem<'tcx>)
Trait Implementations§
Source§impl<'tcx> Clone for AbstractStateItem<'tcx>
 
impl<'tcx> Clone for AbstractStateItem<'tcx>
Source§fn clone(&self) -> AbstractStateItem<'tcx>
 
fn clone(&self) -> AbstractStateItem<'tcx>
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 moreSource§impl<'tcx> Debug for AbstractStateItem<'tcx>
 
impl<'tcx> Debug for AbstractStateItem<'tcx>
Source§impl<'tcx> PartialEq for AbstractStateItem<'tcx>
 
impl<'tcx> PartialEq for AbstractStateItem<'tcx>
impl<'tcx> StructuralPartialEq for AbstractStateItem<'tcx>
Auto Trait Implementations§
impl<'tcx> Freeze for AbstractStateItem<'tcx>
impl<'tcx> !RefUnwindSafe for AbstractStateItem<'tcx>
impl<'tcx> Send for AbstractStateItem<'tcx>
impl<'tcx> Sync for AbstractStateItem<'tcx>
impl<'tcx> Unpin for AbstractStateItem<'tcx>
impl<'tcx> !UnwindSafe for AbstractStateItem<'tcx>
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