Struct mariadb_sys::st_grant_internal_info
source · #[repr(C)]pub struct st_grant_internal_info {
pub m_schema_lookup_done: bool,
pub m_schema_access: *const ACL_internal_schema_access,
pub m_table_lookup_done: bool,
pub m_table_access: *const ACL_internal_table_access,
}
Expand description
State information for internal tables grants. This structure is part of the TABLE_LIST, and is updated during the ACL check process. @sa GRANT_INFO
Fields§
§m_schema_lookup_done: bool
True if the internal lookup by schema name was done.
m_schema_access: *const ACL_internal_schema_access
Cached internal schema access.
m_table_lookup_done: bool
True if the internal lookup by table name was done.
m_table_access: *const ACL_internal_table_access
Cached internal table access.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for st_grant_internal_info
impl !Send for st_grant_internal_info
impl !Sync for st_grant_internal_info
impl Unpin for st_grant_internal_info
impl UnwindSafe for st_grant_internal_info
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