pub struct ChainNode {
pub node_id: String,
pub node_name: String,
pub file_path: String,
pub line: Option<usize>,
pub edge_to_next: Option<String>,
}Fields§
§node_id: String§node_name: String§file_path: String§line: Option<usize>§edge_to_next: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChainNode
impl RefUnwindSafe for ChainNode
impl Send for ChainNode
impl Sync for ChainNode
impl Unpin for ChainNode
impl UnsafeUnpin for ChainNode
impl UnwindSafe for ChainNode
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