pub enum ExprDependencyKind {
Constant,
Parameter,
Event,
Children,
}Expand description
Intrinsic source of a node’s evaluation dependencies.
Variants§
Constant
The node is a compile-time constant.
Parameter
The node directly reads a parameter definition.
Event
The node directly reads event data.
Children
The node inherits the union of its children’s dependencies.
Trait Implementations§
Source§impl Clone for ExprDependencyKind
impl Clone for ExprDependencyKind
Source§fn clone(&self) -> ExprDependencyKind
fn clone(&self) -> ExprDependencyKind
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 moreimpl Copy for ExprDependencyKind
Source§impl Debug for ExprDependencyKind
impl Debug for ExprDependencyKind
impl Eq for ExprDependencyKind
Source§impl Hash for ExprDependencyKind
impl Hash for ExprDependencyKind
Source§impl PartialEq for ExprDependencyKind
impl PartialEq for ExprDependencyKind
impl StructuralPartialEq for ExprDependencyKind
Auto Trait Implementations§
impl Freeze for ExprDependencyKind
impl RefUnwindSafe for ExprDependencyKind
impl Send for ExprDependencyKind
impl Sync for ExprDependencyKind
impl Unpin for ExprDependencyKind
impl UnsafeUnpin for ExprDependencyKind
impl UnwindSafe for ExprDependencyKind
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