pub enum DiagnosticTarget {
Graph,
Node {
id: NodeId,
},
Port {
id: PortId,
},
Edge {
id: EdgeId,
},
Symbol {
id: SymbolId,
},
}Expand description
Diagnostic target.
Variants§
Graph
Graph-level diagnostic.
Node
Node-level diagnostic.
Port
Port-level diagnostic.
Edge
Edge-level diagnostic.
Symbol
Symbol-level diagnostic.
Trait Implementations§
Source§impl Clone for DiagnosticTarget
impl Clone for DiagnosticTarget
Source§fn clone(&self) -> DiagnosticTarget
fn clone(&self) -> DiagnosticTarget
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 DiagnosticTarget
Source§impl Debug for DiagnosticTarget
impl Debug for DiagnosticTarget
Source§impl<'de> Deserialize<'de> for DiagnosticTarget
impl<'de> Deserialize<'de> for DiagnosticTarget
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 DiagnosticTarget
Source§impl Hash for DiagnosticTarget
impl Hash for DiagnosticTarget
Source§impl PartialEq for DiagnosticTarget
impl PartialEq for DiagnosticTarget
Source§fn eq(&self, other: &DiagnosticTarget) -> bool
fn eq(&self, other: &DiagnosticTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DiagnosticTarget
impl Serialize for DiagnosticTarget
impl StructuralPartialEq for DiagnosticTarget
Auto Trait Implementations§
impl Freeze for DiagnosticTarget
impl RefUnwindSafe for DiagnosticTarget
impl Send for DiagnosticTarget
impl Sync for DiagnosticTarget
impl Unpin for DiagnosticTarget
impl UnsafeUnpin for DiagnosticTarget
impl UnwindSafe for DiagnosticTarget
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.