pub struct GraphNodeRecord {
pub id: String,
pub label: String,
pub label_id: u32,
pub flags: u8,
pub out_edge_count: u32,
pub in_edge_count: u32,
pub table_ref: Option<GraphTableRef>,
pub vector_ref: Option<GraphVectorRef>,
}Fields§
§id: String§label: String§label_id: u32§flags: u8§out_edge_count: u32§in_edge_count: u32§table_ref: Option<GraphTableRef>§vector_ref: Option<GraphVectorRef>Trait Implementations§
Source§impl Clone for GraphNodeRecord
impl Clone for GraphNodeRecord
Source§fn clone(&self) -> GraphNodeRecord
fn clone(&self) -> GraphNodeRecord
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 GraphNodeRecord
impl Debug for GraphNodeRecord
impl Eq for GraphNodeRecord
Source§impl PartialEq for GraphNodeRecord
impl PartialEq for GraphNodeRecord
Source§fn eq(&self, other: &GraphNodeRecord) -> bool
fn eq(&self, other: &GraphNodeRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphNodeRecord
Auto Trait Implementations§
impl Freeze for GraphNodeRecord
impl RefUnwindSafe for GraphNodeRecord
impl Send for GraphNodeRecord
impl Sync for GraphNodeRecord
impl Unpin for GraphNodeRecord
impl UnsafeUnpin for GraphNodeRecord
impl UnwindSafe for GraphNodeRecord
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