pub struct GraphStoreFrame {
pub version: u32,
pub node_count: u64,
pub edge_count: u64,
pub registry_bytes: Option<Vec<u8>>,
pub node_pages: Vec<Vec<u8>>,
pub edge_pages: Vec<Vec<u8>>,
}Fields§
§version: u32§node_count: u64§edge_count: u64§registry_bytes: Option<Vec<u8>>§node_pages: Vec<Vec<u8>>§edge_pages: Vec<Vec<u8>>Trait Implementations§
Source§impl Clone for GraphStoreFrame
impl Clone for GraphStoreFrame
Source§fn clone(&self) -> GraphStoreFrame
fn clone(&self) -> GraphStoreFrame
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 GraphStoreFrame
impl Debug for GraphStoreFrame
impl Eq for GraphStoreFrame
Source§impl PartialEq for GraphStoreFrame
impl PartialEq for GraphStoreFrame
Source§fn eq(&self, other: &GraphStoreFrame) -> bool
fn eq(&self, other: &GraphStoreFrame) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphStoreFrame
Auto Trait Implementations§
impl Freeze for GraphStoreFrame
impl RefUnwindSafe for GraphStoreFrame
impl Send for GraphStoreFrame
impl Sync for GraphStoreFrame
impl Unpin for GraphStoreFrame
impl UnsafeUnpin for GraphStoreFrame
impl UnwindSafe for GraphStoreFrame
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