pub enum ShowBehavior {
Auto,
Setting,
Table,
}Expand description
How SHOW name chooses between a setting and a table.
Variants§
Auto
Prefer a table when one exists, then fall back to a setting.
Setting
Always read a setting.
Table
Always describe a table.
Trait Implementations§
Source§impl Clone for ShowBehavior
impl Clone for ShowBehavior
Source§fn clone(&self) -> ShowBehavior
fn clone(&self) -> ShowBehavior
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 moreimpl Copy for ShowBehavior
Source§impl Debug for ShowBehavior
impl Debug for ShowBehavior
Source§impl Default for ShowBehavior
impl Default for ShowBehavior
Source§fn default() -> ShowBehavior
fn default() -> ShowBehavior
Returns the “default value” for a type. Read more
impl Eq for ShowBehavior
Source§impl PartialEq for ShowBehavior
impl PartialEq for ShowBehavior
impl StructuralPartialEq for ShowBehavior
Auto Trait Implementations§
impl Freeze for ShowBehavior
impl RefUnwindSafe for ShowBehavior
impl Send for ShowBehavior
impl Sync for ShowBehavior
impl Unpin for ShowBehavior
impl UnsafeUnpin for ShowBehavior
impl UnwindSafe for ShowBehavior
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