pub struct TruncateStatement {
pub token: Token,
pub table_name: Identifier,
}Expand description
TRUNCATE TABLE statement
Fields§
§token: Token§table_name: IdentifierTrait Implementations§
Source§impl Clone for TruncateStatement
impl Clone for TruncateStatement
Source§fn clone(&self) -> TruncateStatement
fn clone(&self) -> TruncateStatement
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 TruncateStatement
impl Debug for TruncateStatement
Source§impl Display for TruncateStatement
impl Display for TruncateStatement
Source§impl PartialEq for TruncateStatement
impl PartialEq for TruncateStatement
impl StructuralPartialEq for TruncateStatement
Auto Trait Implementations§
impl Freeze for TruncateStatement
impl RefUnwindSafe for TruncateStatement
impl Send for TruncateStatement
impl Sync for TruncateStatement
impl Unpin for TruncateStatement
impl UnsafeUnpin for TruncateStatement
impl UnwindSafe for TruncateStatement
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