pub struct OperationNode {
pub kind: OperationKind,
pub attributes: OperationAttributes,
}Expand description
One operation in source order; its position is a graph-local reference.
The position is never a stable finding identifier. Stable identifiers are minted only after a versioned normalization and rule application.
Fields§
§kind: OperationKindThe fixed semantic operation this node represents.
attributes: OperationAttributesCompiler-independent evidence used by registered rules.
Trait Implementations§
Source§impl Clone for OperationNode
impl Clone for OperationNode
Source§fn clone(&self) -> OperationNode
fn clone(&self) -> OperationNode
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 Debug for OperationNode
impl Debug for OperationNode
Source§impl<'de> Deserialize<'de> for OperationNode
impl<'de> Deserialize<'de> for OperationNode
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 Eq for OperationNode
Source§impl PartialEq for OperationNode
impl PartialEq for OperationNode
Source§impl Serialize for OperationNode
impl Serialize for OperationNode
impl StructuralPartialEq for OperationNode
Auto Trait Implementations§
impl Freeze for OperationNode
impl RefUnwindSafe for OperationNode
impl Send for OperationNode
impl Sync for OperationNode
impl Unpin for OperationNode
impl UnsafeUnpin for OperationNode
impl UnwindSafe for OperationNode
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.