pub struct GrantPriv {
pub word: String,
pub columns: Vec<String>,
}Expand description
v7.39 (read01 round 59) — one privilege in a GRANT, with the optional COLUMN
list PG allows per privilege: GRANT SELECT (a, b), INSERT (c) ON t TO dan.
An empty column list means the privilege is table-wide.
Fields§
§word: String§columns: Vec<String>Trait Implementations§
impl Eq for GrantPriv
impl StructuralPartialEq for GrantPriv
Auto Trait Implementations§
impl Freeze for GrantPriv
impl RefUnwindSafe for GrantPriv
impl Send for GrantPriv
impl Sync for GrantPriv
impl Unpin for GrantPriv
impl UnsafeUnpin for GrantPriv
impl UnwindSafe for GrantPriv
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