pub struct Node {
pub id: String,
pub label: String,
pub kind: NodeKind,
pub icon_id: Option<String>,
pub detail: Option<String>,
pub parent_group_id: Option<String>,
}Expand description
A normalized architectural node.
Fields§
§id: StringGlobally unique source identifier.
label: StringVisible node label.
kind: NodeKindEffective semantic node kind.
icon_id: Option<String>Optional theme or namespaced provider icon identifier.
detail: Option<String>Optional visible detail.
parent_group_id: Option<String>Nearest containing group, if any.
Trait Implementations§
impl Eq for Node
impl StructuralPartialEq for Node
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