#[repr(C)]pub struct InternalGrant {
pub is_grant: bool,
pub objtype: Type,
pub objects: *mut List,
pub all_privs: bool,
pub privileges: AclMode,
pub col_privs: *mut List,
pub grantees: *mut List,
pub grant_option: bool,
pub behavior: Type,
}Fields§
§is_grant: bool§objtype: Type§objects: *mut List§all_privs: bool§privileges: AclMode§col_privs: *mut List§grantees: *mut List§grant_option: bool§behavior: TypeTrait Implementations§
Source§impl Clone for InternalGrant
impl Clone for InternalGrant
Source§fn clone(&self) -> InternalGrant
fn clone(&self) -> InternalGrant
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 moreimpl Copy for InternalGrant
Source§impl Debug for InternalGrant
impl Debug for InternalGrant
Auto Trait Implementations§
impl !Send for InternalGrant
impl !Sync for InternalGrant
impl Freeze for InternalGrant
impl RefUnwindSafe for InternalGrant
impl Unpin for InternalGrant
impl UnsafeUnpin for InternalGrant
impl UnwindSafe for InternalGrant
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