pub struct RetrieveResultDto {
pub record: RecordDto,
pub score: f32,
pub vector_distance: Option<f32>,
pub text_score: Option<f32>,
pub matched_channels: Vec<String>,
}Fields§
§record: RecordDto§score: f32§vector_distance: Option<f32>§text_score: Option<f32>§matched_channels: Vec<String>Trait Implementations§
Source§impl Debug for RetrieveResultDto
impl Debug for RetrieveResultDto
Source§impl<'de> Deserialize<'de> for RetrieveResultDto
impl<'de> Deserialize<'de> for RetrieveResultDto
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 RetrieveResultDto
impl RefUnwindSafe for RetrieveResultDto
impl Send for RetrieveResultDto
impl Sync for RetrieveResultDto
impl Unpin for RetrieveResultDto
impl UnsafeUnpin for RetrieveResultDto
impl UnwindSafe for RetrieveResultDto
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