pub struct DropOperatorStatement {
pub token: Token,
pub name: QualifiedOperator,
pub left_argument: Option<ProceduralType>,
pub right_argument: Option<ProceduralType>,
pub if_exists: bool,
}Fields§
§token: Token§name: QualifiedOperator§left_argument: Option<ProceduralType>§right_argument: Option<ProceduralType>§if_exists: boolTrait Implementations§
Source§impl Clone for DropOperatorStatement
impl Clone for DropOperatorStatement
Source§fn clone(&self) -> DropOperatorStatement
fn clone(&self) -> DropOperatorStatement
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 DropOperatorStatement
impl Debug for DropOperatorStatement
Source§impl Display for DropOperatorStatement
impl Display for DropOperatorStatement
Source§impl PartialEq for DropOperatorStatement
impl PartialEq for DropOperatorStatement
impl StructuralPartialEq for DropOperatorStatement
Auto Trait Implementations§
impl Freeze for DropOperatorStatement
impl RefUnwindSafe for DropOperatorStatement
impl Send for DropOperatorStatement
impl Sync for DropOperatorStatement
impl Unpin for DropOperatorStatement
impl UnsafeUnpin for DropOperatorStatement
impl UnwindSafe for DropOperatorStatement
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