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.
Implementations§
Source§impl SaltCacheSaver
impl SaltCacheSaver
Sourcepub fn save(self)
pub fn save(self)
Persist all collected entries to disk (best-effort, atomic).
- Drops the internal sender (via the paired
SaltCacheSendergoing out of scope in the caller) so the channel closes. - Collects all
(key, entry)pairs from the channel. - 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>.
Errors are logged but not propagated because cache persistence is non-critical: losing the cache only means the next encryption uses fresh salts.
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 = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
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>
Converts
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>
Converts
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>
Returns the layout of the type.
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
Returns whether the given value has been niched. Read more
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
Writes data to
out indicating that a T is niched.