pub struct SyncState {
pub last_known_checksum: Option<String>,
pub server_checksums: HashMap<String, String>,
pub server_max_entries: Option<u32>,
}Expand description
Mutable state for team memory sync service
Fields§
§last_known_checksum: Option<String>Last known server checksum (ETag) for conditional requests
server_checksums: HashMap<String, String>Per-key content hash (sha256:
server_max_entries: Option<u32>Server-enforced max_entries cap, learned from structured 413
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncState
impl RefUnwindSafe for SyncState
impl Send for SyncState
impl Sync for SyncState
impl Unpin for SyncState
impl UnsafeUnpin for SyncState
impl UnwindSafe for SyncState
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