pub enum ShowResult {
System(ShowSystemResult),
Base(ShowBaseResult),
}Expand description
Result of a show query.
Variants§
System(ShowSystemResult)
Base(ShowBaseResult)
Trait Implementations§
Source§impl Clone for ShowResult
impl Clone for ShowResult
Source§fn clone(&self) -> ShowResult
fn clone(&self) -> ShowResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ShowResult
impl RefUnwindSafe for ShowResult
impl Send for ShowResult
impl Sync for ShowResult
impl Unpin for ShowResult
impl UnsafeUnpin for ShowResult
impl UnwindSafe for ShowResult
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