#[non_exhaustive]pub enum NodeKind {
Show 28 variants
Repository,
File,
Module,
Package,
Function,
Method,
Struct,
Enum,
Trait,
TypeAlias,
Constant,
Static,
Service,
Endpoint,
Table,
Column,
Topic,
ConsumerGroup,
Exchange,
Queue,
Binding,
Collection,
Index,
KubernetesResource,
Container,
ConfigKey,
Unknown,
Custom(String),
}Expand description
Semantic role of a graph node.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Repository
File
Module
Package
Function
Method
Struct
Enum
Trait
TypeAlias
Constant
Static
Service
Endpoint
Table
Column
Topic
ConsumerGroup
Exchange
Queue
Binding
Collection
Index
KubernetesResource
Container
ConfigKey
Unknown
Custom(String)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NodeKind
impl<'de> Deserialize<'de> for NodeKind
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 NodeKind
Source§impl Ord for NodeKind
impl Ord for NodeKind
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for NodeKind
impl PartialOrd for NodeKind
impl StructuralPartialEq for NodeKind
Auto Trait Implementations§
impl Freeze for NodeKind
impl RefUnwindSafe for NodeKind
impl Send for NodeKind
impl Sync for NodeKind
impl Unpin for NodeKind
impl UnsafeUnpin for NodeKind
impl UnwindSafe for NodeKind
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