Skip to main content

TableAclItem

Type Alias TableAclItem 

Source
pub type TableAclItem = AclItem<TableAclPrivilege>;

Aliased Type§

pub struct TableAclItem {
    pub grantee: Option<SmolStr>,
    pub grantor: SmolStr,
    pub grants: Vec<Grant<TableAclPrivilege>>,
}

Fields§

§grantee: Option<SmolStr>

None means the grants are for public

§grantor: SmolStr

The role who granted these grants

§grants: Vec<Grant<TableAclPrivilege>>