pub struct DocumentsSource {
pub collection_ids: Vec<String>,
}Expand description
DocumentsSource defines the source of documents to search over.
Fields§
§collection_ids: Vec<String>The collection IDs to search in.
Trait Implementations§
Source§impl Clone for DocumentsSource
impl Clone for DocumentsSource
Source§fn clone(&self) -> DocumentsSource
fn clone(&self) -> DocumentsSource
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DocumentsSource
impl Debug for DocumentsSource
Source§impl Default for DocumentsSource
impl Default for DocumentsSource
Source§fn default() -> DocumentsSource
fn default() -> DocumentsSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DocumentsSource
impl<'de> Deserialize<'de> for DocumentsSource
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
Source§impl PartialEq for DocumentsSource
impl PartialEq for DocumentsSource
Source§impl Serialize for DocumentsSource
impl Serialize for DocumentsSource
impl StructuralPartialEq for DocumentsSource
Auto Trait Implementations§
impl Freeze for DocumentsSource
impl RefUnwindSafe for DocumentsSource
impl Send for DocumentsSource
impl Sync for DocumentsSource
impl Unpin for DocumentsSource
impl UnwindSafe for DocumentsSource
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