pub enum CacheKey {
Buckets(ProfileId),
Objects {
profile: ProfileId,
bucket: BucketId,
prefix: String,
},
ObjectHead {
profile: ProfileId,
bucket: BucketId,
key: ObjectKey,
},
Inspector {
profile: ProfileId,
bucket: BucketId,
key: Option<ObjectKey>,
},
Capability {
profile: ProfileId,
bucket: Option<BucketId>,
op: String,
},
}Expand description
Discriminated key for every entity the cache can hold.
serialize_key produces a stable, prefix-safe byte sequence so that
per-profile invalidation can iterate by prefix without deserialising values.
Variants§
Buckets(ProfileId)
Bucket list for a profile.
Objects
Object listing at a prefix inside a bucket.
ObjectHead
Single-object HeadObject result.
Inspector
Inspector panel data (bucket or object properties).
Capability
Capability classification result (allowed / denied / unsupported).
Implementations§
Source§impl CacheKey
impl CacheKey
Sourcepub fn serialize_key(&self) -> Vec<u8> ⓘ
pub fn serialize_key(&self) -> Vec<u8> ⓘ
Stable byte representation used as the redb table key and as the
in-memory HashMap lookup key serialisation.
Format: <variant_tag>/<profile_id>[/<extra...>]
Fields are separated by \x00 so no URL-encoding is needed and the
keys are prefix-scannable for per-profile invalidation.
Sourcepub fn profile_id(&self) -> &ProfileId
pub fn profile_id(&self) -> &ProfileId
Return the ProfileId this key is scoped to.
Trait Implementations§
impl Eq for CacheKey
impl StructuralPartialEq for CacheKey
Auto Trait Implementations§
impl Freeze for CacheKey
impl RefUnwindSafe for CacheKey
impl Send for CacheKey
impl Sync for CacheKey
impl Unpin for CacheKey
impl UnsafeUnpin for CacheKey
impl UnwindSafe for CacheKey
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.