pub struct RetrieveRequest {
pub text: Option<String>,
pub vector: Option<Vec<f32>>,
pub limit: usize,
pub filters: Option<Value>,
pub include_expired: bool,
pub include_retired: bool,
pub include_relationships: bool,
pub fusion: String,
}Fields§
§text: Option<String>§vector: Option<Vec<f32>>§limit: usize§filters: Option<Value>§include_expired: bool§include_retired: bool§include_relationships: bool§fusion: StringTrait Implementations§
Source§impl Debug for RetrieveRequest
impl Debug for RetrieveRequest
Source§impl<'de> Deserialize<'de> for RetrieveRequest
impl<'de> Deserialize<'de> for RetrieveRequest
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 RetrieveRequest
impl RefUnwindSafe for RetrieveRequest
impl Send for RetrieveRequest
impl Sync for RetrieveRequest
impl Unpin for RetrieveRequest
impl UnsafeUnpin for RetrieveRequest
impl UnwindSafe for RetrieveRequest
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