pub struct GraphStoreStats {
pub backend: String,
pub document_id: String,
pub root_block_id: BlockId,
pub node_count: usize,
pub explicit_edge_count: usize,
pub structural_edge_count: usize,
pub captured_at: DateTime<Utc>,
pub graph_key: Option<String>,
}Fields§
§backend: String§document_id: String§root_block_id: BlockId§node_count: usize§explicit_edge_count: usize§structural_edge_count: usize§captured_at: DateTime<Utc>§graph_key: Option<String>Trait Implementations§
Source§impl Clone for GraphStoreStats
impl Clone for GraphStoreStats
Source§fn clone(&self) -> GraphStoreStats
fn clone(&self) -> GraphStoreStats
Returns a duplicate of the value. Read more
1.0.0 · 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 GraphStoreStats
impl Debug for GraphStoreStats
Source§impl<'de> Deserialize<'de> for GraphStoreStats
impl<'de> Deserialize<'de> for GraphStoreStats
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GraphStoreStats, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GraphStoreStats, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for GraphStoreStats
impl Serialize for GraphStoreStats
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for GraphStoreStats
impl RefUnwindSafe for GraphStoreStats
impl Send for GraphStoreStats
impl Sync for GraphStoreStats
impl Unpin for GraphStoreStats
impl UnsafeUnpin for GraphStoreStats
impl UnwindSafe for GraphStoreStats
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