pub enum ExplainTable {
Table(TableRef),
WithColumn(TableRef, DynIden),
WithWildcard(TableRef, &'static str),
}Available on crate feature
backend-mysql only.Expand description
MySQL-only EXPLAIN table/column or wildcard target.
Variantsยง
Trait Implementationsยง
Sourceยงimpl Clone for ExplainTable
impl Clone for ExplainTable
Sourceยงfn clone(&self) -> ExplainTable
fn clone(&self) -> ExplainTable
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 ExplainTable
impl Debug for ExplainTable
Sourceยงimpl<T> From<T> for ExplainTablewhere
T: IntoTableRef,
impl<T> From<T> for ExplainTablewhere
T: IntoTableRef,
Sourceยงimpl PartialEq for ExplainTable
impl PartialEq for ExplainTable
Sourceยงfn eq(&self, other: &ExplainTable) -> bool
fn eq(&self, other: &ExplainTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExplainTable
Auto Trait Implementationsยง
impl Freeze for ExplainTable
impl RefUnwindSafe for ExplainTable
impl Send for ExplainTable
impl Sync for ExplainTable
impl Unpin for ExplainTable
impl UnsafeUnpin for ExplainTable
impl UnwindSafe for ExplainTable
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