pub enum SearchSourceType {
Facts,
Chunks,
Messages,
Episodes,
}Expand description
Indicates whether a search result came from a fact, document chunk, message, or episode.
Variants§
Facts
Result is from the facts table.
Chunks
Result is from the chunks table.
Messages
Result is from the messages table.
Episodes
Result is from the episodes table.
Trait Implementations§
Source§impl Clone for SearchSourceType
impl Clone for SearchSourceType
Source§fn clone(&self) -> SearchSourceType
fn clone(&self) -> SearchSourceType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SearchSourceType
impl Debug for SearchSourceType
Source§impl PartialEq for SearchSourceType
impl PartialEq for SearchSourceType
Source§fn eq(&self, other: &SearchSourceType) -> bool
fn eq(&self, other: &SearchSourceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SearchSourceType
impl Eq for SearchSourceType
impl StructuralPartialEq for SearchSourceType
Auto Trait Implementations§
impl Freeze for SearchSourceType
impl RefUnwindSafe for SearchSourceType
impl Send for SearchSourceType
impl Sync for SearchSourceType
impl Unpin for SearchSourceType
impl UnsafeUnpin for SearchSourceType
impl UnwindSafe for SearchSourceType
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