pub struct VacuumStatement {
pub token: Token,
pub table_name: Option<Identifier>,
}Expand description
VACUUM statement — triggers manual cleanup of deleted rows and index compaction
Fields§
§token: Token§table_name: Option<Identifier>Trait Implementations§
Source§impl Clone for VacuumStatement
impl Clone for VacuumStatement
Source§fn clone(&self) -> VacuumStatement
fn clone(&self) -> VacuumStatement
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 VacuumStatement
impl Debug for VacuumStatement
Source§impl Display for VacuumStatement
impl Display for VacuumStatement
Source§impl PartialEq for VacuumStatement
impl PartialEq for VacuumStatement
impl StructuralPartialEq for VacuumStatement
Auto Trait Implementations§
impl Freeze for VacuumStatement
impl RefUnwindSafe for VacuumStatement
impl Send for VacuumStatement
impl Sync for VacuumStatement
impl Unpin for VacuumStatement
impl UnsafeUnpin for VacuumStatement
impl UnwindSafe for VacuumStatement
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