pub struct ExpressionDependencies {
pub predicates: HashSet<String>,
pub variables: HashSet<String>,
pub domains: HashSet<String>,
pub config_hash: u64,
}Expand description
Tracks dependencies of compiled expressions.
Fields§
§predicates: HashSet<String>Predicates referenced in the expression
variables: HashSet<String>Variables referenced in the expression
domains: HashSet<String>Domains used in the expression
config_hash: u64Configuration hash (to detect strategy changes)
Implementations§
Trait Implementations§
Source§impl Clone for ExpressionDependencies
impl Clone for ExpressionDependencies
Source§fn clone(&self) -> ExpressionDependencies
fn clone(&self) -> ExpressionDependencies
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 Debug for ExpressionDependencies
impl Debug for ExpressionDependencies
Source§impl Default for ExpressionDependencies
impl Default for ExpressionDependencies
Source§impl PartialEq for ExpressionDependencies
impl PartialEq for ExpressionDependencies
impl Eq for ExpressionDependencies
impl StructuralPartialEq for ExpressionDependencies
Auto Trait Implementations§
impl Freeze for ExpressionDependencies
impl RefUnwindSafe for ExpressionDependencies
impl Send for ExpressionDependencies
impl Sync for ExpressionDependencies
impl Unpin for ExpressionDependencies
impl UnwindSafe for ExpressionDependencies
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.