pub struct PhraseResultBooleanQuery {
pub common: PhraseResultCommon,
pub result: bool,
}
Expand description
Defines the result given by the server when a boolean query is processed.
Fields§
§common: PhraseResultCommon
The common fields of any PhraseResult
.
result: bool
A boolean flag actually indicating the result of the query itself.
Trait Implementations§
Source§impl Clone for PhraseResultBooleanQuery
impl Clone for PhraseResultBooleanQuery
Source§fn clone(&self) -> PhraseResultBooleanQuery
fn clone(&self) -> PhraseResultBooleanQuery
Returns a copy 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 PhraseResultBooleanQuery
impl Debug for PhraseResultBooleanQuery
Source§impl<'de> Deserialize<'de> for PhraseResultBooleanQuery
impl<'de> Deserialize<'de> for PhraseResultBooleanQuery
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 PhraseResultBooleanQuery
impl RefUnwindSafe for PhraseResultBooleanQuery
impl Send for PhraseResultBooleanQuery
impl Sync for PhraseResultBooleanQuery
impl Unpin for PhraseResultBooleanQuery
impl UnwindSafe for PhraseResultBooleanQuery
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