pub struct AlterPolicyStmt {
pub policy_name: Option<String>,
pub table: Option<Box<RangeVar>>,
pub roles: Option<Vec<Node>>,
pub qual: Option<Box<Node>>,
pub with_check: Option<Box<Node>>,
}Fields§
§policy_name: Option<String>§table: Option<Box<RangeVar>>§roles: Option<Vec<Node>>§qual: Option<Box<Node>>§with_check: Option<Box<Node>>Trait Implementations§
Source§impl Debug for AlterPolicyStmt
impl Debug for AlterPolicyStmt
Source§impl<'de> Deserialize<'de> for AlterPolicyStmt
impl<'de> Deserialize<'de> for AlterPolicyStmt
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AlterPolicyStmt
impl RefUnwindSafe for AlterPolicyStmt
impl Send for AlterPolicyStmt
impl Sync for AlterPolicyStmt
impl Unpin for AlterPolicyStmt
impl UnwindSafe for AlterPolicyStmt
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