pub struct AnalyzeStatement {
pub token: Token,
pub table_name: Option<SmartString>,
}Expand description
ANALYZE statement for collecting table statistics
Fields§
§token: Token§table_name: Option<SmartString>Table name to analyze (None = analyze all tables)
Trait Implementations§
Source§impl Clone for AnalyzeStatement
impl Clone for AnalyzeStatement
Source§fn clone(&self) -> AnalyzeStatement
fn clone(&self) -> AnalyzeStatement
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 AnalyzeStatement
impl Debug for AnalyzeStatement
Source§impl Display for AnalyzeStatement
impl Display for AnalyzeStatement
Source§impl PartialEq for AnalyzeStatement
impl PartialEq for AnalyzeStatement
impl StructuralPartialEq for AnalyzeStatement
Auto Trait Implementations§
impl Freeze for AnalyzeStatement
impl RefUnwindSafe for AnalyzeStatement
impl Send for AnalyzeStatement
impl Sync for AnalyzeStatement
impl Unpin for AnalyzeStatement
impl UnsafeUnpin for AnalyzeStatement
impl UnwindSafe for AnalyzeStatement
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