pub struct CodeGraphSessionPersistenceMetadata {
pub schema_version: String,
pub session_id: String,
pub parent_session_id: Option<String>,
pub graph_snapshot_hash: String,
pub session_snapshot_hash: String,
pub mutation_count: usize,
}Fields§
§schema_version: String§session_id: String§parent_session_id: Option<String>§graph_snapshot_hash: String§session_snapshot_hash: String§mutation_count: usizeTrait Implementations§
Source§impl Clone for CodeGraphSessionPersistenceMetadata
impl Clone for CodeGraphSessionPersistenceMetadata
Source§fn clone(&self) -> CodeGraphSessionPersistenceMetadata
fn clone(&self) -> CodeGraphSessionPersistenceMetadata
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<'de> Deserialize<'de> for CodeGraphSessionPersistenceMetadata
impl<'de> Deserialize<'de> for CodeGraphSessionPersistenceMetadata
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 CodeGraphSessionPersistenceMetadata
impl RefUnwindSafe for CodeGraphSessionPersistenceMetadata
impl Send for CodeGraphSessionPersistenceMetadata
impl Sync for CodeGraphSessionPersistenceMetadata
impl Unpin for CodeGraphSessionPersistenceMetadata
impl UnsafeUnpin for CodeGraphSessionPersistenceMetadata
impl UnwindSafe for CodeGraphSessionPersistenceMetadata
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