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