pub struct GraphMetadata {
pub repo_id: String,
pub last_updated: SystemTime,
pub version: u64,
pub file_hashes: HashMap<PathBuf, String>,
pub total_nodes: usize,
pub total_edges: usize,
pub schema_version: String,
}
Expand description
Graph metadata for version tracking and incremental updates
Fields§
§repo_id: String
§last_updated: SystemTime
§version: u64
§file_hashes: HashMap<PathBuf, String>
§total_nodes: usize
§total_edges: usize
§schema_version: String
Trait Implementations§
Source§impl Clone for GraphMetadata
impl Clone for GraphMetadata
Source§fn clone(&self) -> GraphMetadata
fn clone(&self) -> GraphMetadata
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 GraphMetadata
impl Debug for GraphMetadata
Source§impl<'de> Deserialize<'de> for GraphMetadata
impl<'de> Deserialize<'de> for GraphMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GraphMetadata
impl RefUnwindSafe for GraphMetadata
impl Send for GraphMetadata
impl Sync for GraphMetadata
impl Unpin for GraphMetadata
impl UnwindSafe for GraphMetadata
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