pub struct SaltCacheSaver { /* private fields */ }Expand description
Receiver that collects and persists cache entries to disk.
Created paired with a SaltCacheSender via create_writer. After all
parallel work completes, call save to collect entries,
merge with any existing on-disk cache, and serialize via rkyv.
This type is not Sync — it should only be used on the main thread
after rayon work completes.
§Drop safety
Drop is implemented as a safety net: if save is not
called (e.g. due to a panic during parallel decryption), any entries
already buffered in the channel are still persisted. This honors the
module-level contract that partial progress is preserved on error.
Implementations§
Source§impl SaltCacheSaver
impl SaltCacheSaver
Sourcepub fn save(self)
pub fn save(self)
Persist all collected entries to disk (best-effort, atomic).
- Collects all
(key, entry)pairs currently buffered in the channel viampsc::Receiver::try_iter(non-blocking — by the time this is called, all rayon workers have finished, so every sent entry is already buffered). - Merges with any existing on-disk cache (existing entries are kept only if no new entry overrides them).
- Serializes via rkyv and writes atomically to
<repo>/.git/<CACHE_FILENAME>.
Safe to call exactly once; a paired Drop impl guards the
panic-on-drop path. Errors are logged but not propagated because cache
persistence is non-critical: losing the cache only means the next
encryption uses fresh salts.
Trait Implementations§
Source§impl Drop for SaltCacheSaver
impl Drop for SaltCacheSaver
Auto Trait Implementations§
impl !Sync for SaltCacheSaver
impl Freeze for SaltCacheSaver
impl RefUnwindSafe for SaltCacheSaver
impl Send for SaltCacheSaver
impl Unpin for SaltCacheSaver
impl UnsafeUnpin for SaltCacheSaver
impl UnwindSafe for SaltCacheSaver
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Source§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
Source§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
out indicating that a T is niched.