pub struct DropOperator<'a> {
pub drop_operator_span: Span,
pub if_exists: Option<Span>,
pub operators: Vec<DropOperatorItem<'a>>,
pub restrict_or_cascade: Option<CascadeOrRestrict>,
}Fields§
§drop_operator_span: SpanSpan of “DROP OPERATOR”
if_exists: Option<Span>Span of “IF EXISTS” if specified
operators: Vec<DropOperatorItem<'a>>List of operators to drop
restrict_or_cascade: Option<CascadeOrRestrict>Restrict or cascade option (PostgreSQL)
Trait Implementations§
Source§impl<'a> Clone for DropOperator<'a>
impl<'a> Clone for DropOperator<'a>
Source§fn clone(&self) -> DropOperator<'a>
fn clone(&self) -> DropOperator<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for DropOperator<'a>
impl<'a> Debug for DropOperator<'a>
Auto Trait Implementations§
impl<'a> Freeze for DropOperator<'a>
impl<'a> RefUnwindSafe for DropOperator<'a>
impl<'a> Send for DropOperator<'a>
impl<'a> Sync for DropOperator<'a>
impl<'a> Unpin for DropOperator<'a>
impl<'a> UnsafeUnpin for DropOperator<'a>
impl<'a> UnwindSafe for DropOperator<'a>
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