#[non_exhaustive]pub enum ExplainFormat {
Text,
Xml,
Json,
Yaml,
Tree,
Traditional,
}Available on crate features
backend-mysql or backend-postgres only.Variants (Non-exhaustive)ยง
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Text
Available on crate feature
backend-postgres only.Xml
Available on crate feature
backend-postgres only.Json
Yaml
Available on crate feature
backend-postgres only.Tree
Available on crate feature
backend-mysql only.Traditional
Available on crate feature
backend-mysql only.Implementationsยง
Trait Implementationsยง
Sourceยงimpl Clone for ExplainFormat
impl Clone for ExplainFormat
Sourceยงfn clone(&self) -> ExplainFormat
fn clone(&self) -> ExplainFormat
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 ExplainFormat
impl Debug for ExplainFormat
Sourceยงimpl PartialEq for ExplainFormat
impl PartialEq for ExplainFormat
Sourceยงfn eq(&self, other: &ExplainFormat) -> bool
fn eq(&self, other: &ExplainFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ExplainFormat
impl Eq for ExplainFormat
impl StructuralPartialEq for ExplainFormat
Auto Trait Implementationsยง
impl Freeze for ExplainFormat
impl RefUnwindSafe for ExplainFormat
impl Send for ExplainFormat
impl Sync for ExplainFormat
impl Unpin for ExplainFormat
impl UnsafeUnpin for ExplainFormat
impl UnwindSafe for ExplainFormat
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