pub enum LogicPathTarget<A: Hash + Eq + Clone> {
Var(VarAtomBase<A>),
CombCaptureEvent {
site_id: u32,
guard: Option<NodeId>,
emit_on_true: bool,
args: Vec<NodeId>,
loop_runner: Option<NodeId>,
fatal_error_code: Option<i64>,
consume_enabled: bool,
},
}Variants§
Var(VarAtomBase<A>)
CombCaptureEvent
Implementations§
Source§impl<A: Hash + Eq + Clone> LogicPathTarget<A>
impl<A: Hash + Eq + Clone> LogicPathTarget<A>
pub fn var(&self) -> Option<&VarAtomBase<A>>
Trait Implementations§
Source§impl<A: Clone + Hash + Eq + Clone> Clone for LogicPathTarget<A>
impl<A: Clone + Hash + Eq + Clone> Clone for LogicPathTarget<A>
Source§fn clone(&self) -> LogicPathTarget<A>
fn clone(&self) -> LogicPathTarget<A>
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<'de, A> Deserialize<'de> for LogicPathTarget<A>
impl<'de, A> Deserialize<'de> for LogicPathTarget<A>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl<A: Eq + Hash + Eq + Clone> Eq for LogicPathTarget<A>
Source§impl<A> Serialize for LogicPathTarget<A>
impl<A> Serialize for LogicPathTarget<A>
impl<A: PartialEq + Hash + Eq + Clone> StructuralPartialEq for LogicPathTarget<A>
Auto Trait Implementations§
impl<A> Freeze for LogicPathTarget<A>where
VarAtomBase<A>: Freeze,
impl<A> RefUnwindSafe for LogicPathTarget<A>where
VarAtomBase<A>: RefUnwindSafe,
impl<A> Send for LogicPathTarget<A>where
VarAtomBase<A>: Send,
impl<A> Sync for LogicPathTarget<A>where
VarAtomBase<A>: Sync,
impl<A> Unpin for LogicPathTarget<A>where
VarAtomBase<A>: Unpin,
impl<A> UnsafeUnpin for LogicPathTarget<A>where
VarAtomBase<A>: UnsafeUnpin,
impl<A> UnwindSafe for LogicPathTarget<A>where
VarAtomBase<A>: 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