pub struct RecallResponse {
pub memories: Vec<RecallResult>,
pub query_embedding_time_ms: u64,
pub search_time_ms: u64,
}Expand description
Response from recall
Fields§
§memories: Vec<RecallResult>§query_embedding_time_ms: u64§search_time_ms: u64Trait Implementations§
Source§impl Debug for RecallResponse
impl Debug for RecallResponse
Auto Trait Implementations§
impl Freeze for RecallResponse
impl RefUnwindSafe for RecallResponse
impl Send for RecallResponse
impl Sync for RecallResponse
impl Unpin for RecallResponse
impl UnsafeUnpin for RecallResponse
impl UnwindSafe for RecallResponse
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