pub struct NodeInfo {
pub id: ElementId,
pub element_type: ElementType,
pub name: Arc<str>,
}Expand description
One element as it appears in a GraphSnapshot — its stable identity, its
type, and the name its caller chose.
Fields§
§id: ElementIdStable identity assigned by the owning pipeline graph.
element_type: ElementTypeBuilt-in kind reported by the element.
name: Arc<str>Caller-selected instance name; names need not be unique within a graph.
Trait Implementations§
impl Eq for NodeInfo
impl StructuralPartialEq for NodeInfo
Auto Trait Implementations§
impl Freeze for NodeInfo
impl RefUnwindSafe for NodeInfo
impl Send for NodeInfo
impl Sync for NodeInfo
impl Unpin for NodeInfo
impl UnsafeUnpin for NodeInfo
impl UnwindSafe for NodeInfo
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