pub struct PinnedAttach {
pub schema_version: u32,
pub embedding: Option<EmbeddingFingerprint>,
}Expand description
Snapshot of write-mode-relevant metadata captured by a read-only attach. Compared against the on-disk values when the reader decides whether it can still safely serve queries against the DB.
Fields§
§schema_version: u32§embedding: Option<EmbeddingFingerprint>Trait Implementations§
Source§impl Clone for PinnedAttach
impl Clone for PinnedAttach
Source§fn clone(&self) -> PinnedAttach
fn clone(&self) -> PinnedAttach
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 PinnedAttach
impl Debug for PinnedAttach
impl Eq for PinnedAttach
Source§impl PartialEq for PinnedAttach
impl PartialEq for PinnedAttach
Source§fn eq(&self, other: &PinnedAttach) -> bool
fn eq(&self, other: &PinnedAttach) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PinnedAttach
Auto Trait Implementations§
impl Freeze for PinnedAttach
impl RefUnwindSafe for PinnedAttach
impl Send for PinnedAttach
impl Sync for PinnedAttach
impl Unpin for PinnedAttach
impl UnsafeUnpin for PinnedAttach
impl UnwindSafe for PinnedAttach
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