pub struct CursorDb {
pub blobs: Vec<CursorBlob>,
pub meta: Vec<CursorMetaEntry>,
pub session_meta: Option<Value>,
}Expand description
Faithful in-memory representation of store.db, plus sibling meta.json.
Fields§
§blobs: Vec<CursorBlob>§meta: Vec<CursorMetaEntry>§session_meta: Option<Value>Trait Implementations§
Source§impl<'de> Deserialize<'de> for CursorDb
impl<'de> Deserialize<'de> for CursorDb
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
impl StructuralPartialEq for CursorDb
Auto Trait Implementations§
impl Freeze for CursorDb
impl RefUnwindSafe for CursorDb
impl Send for CursorDb
impl Sync for CursorDb
impl Unpin for CursorDb
impl UnsafeUnpin for CursorDb
impl UnwindSafe for CursorDb
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