pub struct KVEntry {Show 13 fields
pub key_hash: String,
pub key_data: Option<Vec<u8>>,
pub value_data: Vec<u8>,
pub key_type: String,
pub layer_index: i32,
pub head_index: Option<i32>,
pub importance_score: f32,
pub access_count: i32,
pub last_accessed: DateTime<Utc>,
pub token_positions: Option<Vec<u32>>,
pub embedding: Option<Vec<f32>>,
pub size_bytes: usize,
pub is_persistent: bool,
}Expand description
Represents a KV cache entry (simplified for extraction)
Fields§
§key_hash: String§key_data: Option<Vec<u8>>§value_data: Vec<u8>§key_type: String§layer_index: i32§head_index: Option<i32>§importance_score: f32§access_count: i32§last_accessed: DateTime<Utc>§token_positions: Option<Vec<u32>>§embedding: Option<Vec<f32>>§size_bytes: usize§is_persistent: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for KVEntry
impl<'de> Deserialize<'de> for KVEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for KVEntry
impl RefUnwindSafe for KVEntry
impl Send for KVEntry
impl Sync for KVEntry
impl Unpin for KVEntry
impl UnsafeUnpin for KVEntry
impl UnwindSafe for KVEntry
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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 more