pub enum ExplainMode {
Auto,
On,
Off,
}Expand description
When an EXPLAIN listing is laid out as a table.
Variants§
Auto
Only for a statement that is an EXPLAIN, which is the default.
On
For every statement.
Off
For none, so an EXPLAIN prints under the current .mode.
Implementations§
Trait Implementations§
Source§impl Clone for ExplainMode
impl Clone for ExplainMode
impl Copy for ExplainMode
Source§impl Debug for ExplainMode
impl Debug for ExplainMode
impl Eq for ExplainMode
Source§impl PartialEq for ExplainMode
impl PartialEq for ExplainMode
impl StructuralPartialEq for ExplainMode
Auto Trait Implementations§
impl Freeze for ExplainMode
impl RefUnwindSafe for ExplainMode
impl Send for ExplainMode
impl Sync for ExplainMode
impl Unpin for ExplainMode
impl UnsafeUnpin for ExplainMode
impl UnwindSafe for ExplainMode
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more