#[non_exhaustive]pub enum PgExplainSerialize {
None,
Text,
Binary,
}Available on crate feature
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.
Trait Implementationsยง
Sourceยงimpl Clone for PgExplainSerialize
impl Clone for PgExplainSerialize
Sourceยงfn clone(&self) -> PgExplainSerialize
fn clone(&self) -> PgExplainSerialize
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 PgExplainSerialize
impl Debug for PgExplainSerialize
Sourceยงimpl PartialEq for PgExplainSerialize
impl PartialEq for PgExplainSerialize
Sourceยงfn eq(&self, other: &PgExplainSerialize) -> bool
fn eq(&self, other: &PgExplainSerialize) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PgExplainSerialize
impl Eq for PgExplainSerialize
impl StructuralPartialEq for PgExplainSerialize
Auto Trait Implementationsยง
impl Freeze for PgExplainSerialize
impl RefUnwindSafe for PgExplainSerialize
impl Send for PgExplainSerialize
impl Sync for PgExplainSerialize
impl Unpin for PgExplainSerialize
impl UnsafeUnpin for PgExplainSerialize
impl UnwindSafe for PgExplainSerialize
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