pub struct DropPolicyStatement {
pub name: String,
pub table: String,
pub if_exists: bool,
}Expand description
v7.39 (RLS) — DROP POLICY [IF EXISTS] name ON table.
Fields§
§name: String§table: String§if_exists: boolTrait Implementations§
Source§impl Clone for DropPolicyStatement
impl Clone for DropPolicyStatement
Source§fn clone(&self) -> DropPolicyStatement
fn clone(&self) -> DropPolicyStatement
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 DropPolicyStatement
impl Debug for DropPolicyStatement
impl Eq for DropPolicyStatement
Source§impl PartialEq for DropPolicyStatement
impl PartialEq for DropPolicyStatement
impl StructuralPartialEq for DropPolicyStatement
Auto Trait Implementations§
impl Freeze for DropPolicyStatement
impl RefUnwindSafe for DropPolicyStatement
impl Send for DropPolicyStatement
impl Sync for DropPolicyStatement
impl Unpin for DropPolicyStatement
impl UnsafeUnpin for DropPolicyStatement
impl UnwindSafe for DropPolicyStatement
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