pub struct ValidateResult {
pub query: String,
pub exists: bool,
pub bloom_hit: bool,
pub candidates: Vec<SymbolSuggestion>,
pub meta: QueryMeta,
}Fields§
§query: String§exists: bool§bloom_hit: bool§candidates: Vec<SymbolSuggestion>§meta: QueryMetaTrait Implementations§
Source§impl Clone for ValidateResult
impl Clone for ValidateResult
Source§fn clone(&self) -> ValidateResult
fn clone(&self) -> ValidateResult
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 ValidateResult
impl Debug for ValidateResult
Source§impl<'de> Deserialize<'de> for ValidateResult
impl<'de> Deserialize<'de> for ValidateResult
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 Display for ValidateResult
impl Display for ValidateResult
Auto Trait Implementations§
impl Freeze for ValidateResult
impl RefUnwindSafe for ValidateResult
impl Send for ValidateResult
impl Sync for ValidateResult
impl Unpin for ValidateResult
impl UnsafeUnpin for ValidateResult
impl UnwindSafe for ValidateResult
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