pub struct GraphNode {
pub id: String,
pub label: String,
pub trust: &'static str,
}Expand description
A node in the concept graph.
Fields§
§id: StringThe concept id, which cytoscape uses as the element id.
label: StringThe label to draw.
trust: &'static str§5.3’s tier, which the stylesheet colours by.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphNode
impl RefUnwindSafe for GraphNode
impl Send for GraphNode
impl Sync for GraphNode
impl Unpin for GraphNode
impl UnsafeUnpin for GraphNode
impl UnwindSafe for GraphNode
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