pub struct Item {
pub namespace: String,
pub key: String,
pub value: Value,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub expires_at: Option<DateTime<Utc>>,
pub embedding: Option<Vec<f32>>,
}Expand description
Stored item
Fields§
§namespace: StringNamespace path
key: StringKey within namespace
value: ValueStored value
created_at: DateTime<Utc>Creation timestamp
updated_at: DateTime<Utc>Last update timestamp
expires_at: Option<DateTime<Utc>>Optional expiration timestamp for TTL support
embedding: Option<Vec<f32>>Optional embedding vector for vector search.
Pre-computed during put() when an IndexConfig with an
EmbeddingFunc is configured and index fields are provided.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Item
impl<'de> Deserialize<'de> for Item
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 Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnsafeUnpin for Item
impl UnwindSafe for Item
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