Skip to main content

DbAclItem

Type Alias DbAclItem 

Source
pub type DbAclItem = AclItem<DbAclPrivilege>;

Aliased Type§

pub struct DbAclItem {
    pub grantee: Option<SmolStr>,
    pub grantor: SmolStr,
    pub grants: Vec<Grant<DbAclPrivilege>>,
}

Fields§

§grantee: Option<SmolStr>

None means the grants are for public

§grantor: SmolStr

The role who granted these grants

§grants: Vec<Grant<DbAclPrivilege>>