#[repr(C)]pub struct GrantStmt {
pub type_: NodeTag,
pub is_grant: bool,
pub targtype: Type,
pub objtype: Type,
pub objects: *mut List,
pub privileges: *mut List,
pub grantees: *mut List,
pub grant_option: bool,
pub grantor: *mut RoleSpec,
pub behavior: Type,
}Fields§
§type_: NodeTag§is_grant: bool§targtype: Type§objtype: Type§objects: *mut List§privileges: *mut List§grantees: *mut List§grant_option: bool§grantor: *mut RoleSpec§behavior: TypeTrait Implementations§
impl Copy for GrantStmt
Auto Trait Implementations§
impl !Send for GrantStmt
impl !Sync for GrantStmt
impl Freeze for GrantStmt
impl RefUnwindSafe for GrantStmt
impl Unpin for GrantStmt
impl UnsafeUnpin for GrantStmt
impl UnwindSafe for GrantStmt
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