pub struct ExplainResponse {
pub explanation: Option<ExplanationDetail>,
pub index: String,
pub matched: bool,
pub get: Option<InlineGet>,
pub id: String,
}Fields§
§explanation: Option<ExplanationDetail>§index: String§matched: bool§get: Option<InlineGet>§id: StringImplementations§
Trait Implementations§
Source§impl Clone for ExplainResponse
impl Clone for ExplainResponse
Source§fn clone(&self) -> ExplainResponse
fn clone(&self) -> ExplainResponse
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 ExplainResponse
impl Debug for ExplainResponse
Source§impl Default for ExplainResponse
impl Default for ExplainResponse
Source§fn default() -> ExplainResponse
fn default() -> ExplainResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExplainResponse
impl<'de> Deserialize<'de> for ExplainResponse
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 ExplainResponse
impl PartialEq for ExplainResponse
Source§fn eq(&self, other: &ExplainResponse) -> bool
fn eq(&self, other: &ExplainResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExplainResponse
impl Serialize for ExplainResponse
impl StructuralPartialEq for ExplainResponse
Auto Trait Implementations§
impl Freeze for ExplainResponse
impl RefUnwindSafe for ExplainResponse
impl Send for ExplainResponse
impl Sync for ExplainResponse
impl Unpin for ExplainResponse
impl UnsafeUnpin for ExplainResponse
impl UnwindSafe for ExplainResponse
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