pub struct ShowDatabasesStmt {
pub like_pattern: Option<String>,
pub where_clause: Option<Expression>,
}Expand description
SHOW DATABASES statement
Fields§
§like_pattern: Option<String>Optional LIKE pattern
where_clause: Option<Expression>Optional WHERE expression
Trait Implementations§
Source§impl Clone for ShowDatabasesStmt
impl Clone for ShowDatabasesStmt
Source§fn clone(&self) -> ShowDatabasesStmt
fn clone(&self) -> ShowDatabasesStmt
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 moreSource§impl Debug for ShowDatabasesStmt
impl Debug for ShowDatabasesStmt
Source§impl PartialEq for ShowDatabasesStmt
impl PartialEq for ShowDatabasesStmt
impl StructuralPartialEq for ShowDatabasesStmt
Auto Trait Implementations§
impl Freeze for ShowDatabasesStmt
impl RefUnwindSafe for ShowDatabasesStmt
impl Send for ShowDatabasesStmt
impl Sync for ShowDatabasesStmt
impl Unpin for ShowDatabasesStmt
impl UnwindSafe for ShowDatabasesStmt
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