pub struct DropRoutineStatement {
pub token: Token,
pub kind: RoutineKindSyntax,
pub signature: RoutineSignatureSyntax,
pub if_exists: bool,
pub behavior: DropBehaviorSyntax,
}Fields§
§token: Token§kind: RoutineKindSyntax§signature: RoutineSignatureSyntax§if_exists: bool§behavior: DropBehaviorSyntaxTrait Implementations§
Source§impl Clone for DropRoutineStatement
impl Clone for DropRoutineStatement
Source§fn clone(&self) -> DropRoutineStatement
fn clone(&self) -> DropRoutineStatement
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 DropRoutineStatement
impl Debug for DropRoutineStatement
Source§impl Display for DropRoutineStatement
impl Display for DropRoutineStatement
Source§impl PartialEq for DropRoutineStatement
impl PartialEq for DropRoutineStatement
impl StructuralPartialEq for DropRoutineStatement
Auto Trait Implementations§
impl Freeze for DropRoutineStatement
impl RefUnwindSafe for DropRoutineStatement
impl Send for DropRoutineStatement
impl Sync for DropRoutineStatement
impl Unpin for DropRoutineStatement
impl UnsafeUnpin for DropRoutineStatement
impl UnwindSafe for DropRoutineStatement
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