[][src]Struct postgres_parser::sys::AlterPolicyStmt

#[repr(C)]pub struct AlterPolicyStmt {
    pub type_: NodeTag,
    pub policy_name: *mut c_char,
    pub table: *mut RangeVar,
    pub roles: *mut List,
    pub qual: *mut Node,
    pub with_check: *mut Node,
}

Alter POLICY Statement

Fields

type_: NodeTagpolicy_name: *mut c_chartable: *mut RangeVar

Policy's name

roles: *mut List

the table name the policy applies to

qual: *mut Node

the roles associated with the policy

with_check: *mut Node

the policy's condition

Trait Implementations

impl Debug for AlterPolicyStmt[src]

impl Default for AlterPolicyStmt[src]

impl Eq for AlterPolicyStmt[src]

impl Hash for AlterPolicyStmt[src]

impl PartialEq<AlterPolicyStmt> for AlterPolicyStmt[src]

impl StructuralEq for AlterPolicyStmt[src]

impl StructuralPartialEq for AlterPolicyStmt[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.