pub struct ExplainTableQueryPlanResponse {
pub plan: String,
}
Fields§
§plan: String
Human-readable query execution plan
Implementations§
Source§impl ExplainTableQueryPlanResponse
impl ExplainTableQueryPlanResponse
pub fn new(plan: String) -> ExplainTableQueryPlanResponse
Trait Implementations§
Source§impl Clone for ExplainTableQueryPlanResponse
impl Clone for ExplainTableQueryPlanResponse
Source§fn clone(&self) -> ExplainTableQueryPlanResponse
fn clone(&self) -> ExplainTableQueryPlanResponse
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 Default for ExplainTableQueryPlanResponse
impl Default for ExplainTableQueryPlanResponse
Source§fn default() -> ExplainTableQueryPlanResponse
fn default() -> ExplainTableQueryPlanResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExplainTableQueryPlanResponse
impl<'de> Deserialize<'de> for ExplainTableQueryPlanResponse
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 ExplainTableQueryPlanResponse
impl PartialEq for ExplainTableQueryPlanResponse
Source§fn eq(&self, other: &ExplainTableQueryPlanResponse) -> bool
fn eq(&self, other: &ExplainTableQueryPlanResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExplainTableQueryPlanResponse
Auto Trait Implementations§
impl Freeze for ExplainTableQueryPlanResponse
impl RefUnwindSafe for ExplainTableQueryPlanResponse
impl Send for ExplainTableQueryPlanResponse
impl Sync for ExplainTableQueryPlanResponse
impl Unpin for ExplainTableQueryPlanResponse
impl UnwindSafe for ExplainTableQueryPlanResponse
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