pub struct GraphNodeView {
pub node_id: String,
pub node_kind: String,
pub title: String,
pub summary: String,
pub status: String,
pub labels: Vec<String>,
pub properties: BTreeMap<String, String>,
}Fields§
§node_id: String§node_kind: String§title: String§summary: String§status: String§labels: Vec<String>§properties: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for GraphNodeView
impl Clone for GraphNodeView
Source§fn clone(&self) -> GraphNodeView
fn clone(&self) -> GraphNodeView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GraphNodeView
impl Debug for GraphNodeView
impl Eq for GraphNodeView
Source§impl PartialEq for GraphNodeView
impl PartialEq for GraphNodeView
impl StructuralPartialEq for GraphNodeView
Auto Trait Implementations§
impl Freeze for GraphNodeView
impl RefUnwindSafe for GraphNodeView
impl Send for GraphNodeView
impl Sync for GraphNodeView
impl Unpin for GraphNodeView
impl UnsafeUnpin for GraphNodeView
impl UnwindSafe for GraphNodeView
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