pub struct Node {
pub id: String,
pub label: String,
pub kind: NodeKind,
pub module_path: String,
pub file: String,
pub line: u32,
pub source: Option<String>,
}Expand description
Graph node metadata persisted in a debugging session.
Fields§
§id: StringStable node identifier within a session.
label: StringHuman-readable label shown in the UI.
kind: NodeKindSemantic node type.
module_path: StringRust module path where the node originated.
file: StringSource file path captured for the node.
line: u32Source line captured for the node.
source: Option<String>Optional source code snippet shown by the UI.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Node
impl<'de> Deserialize<'de> for Node
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
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnsafeUnpin for Node
impl UnwindSafe for Node
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