pub trait EventForeignPrivileges {
// Required method
fn ensure_foreign_table_privilege(
&self,
name: &str,
privilege: TableAclPrivilege,
) -> Result<(), SQLError>;
}Expand description
Foreign-table authorization retains its own role and security read guards.
Required Methods§
fn ensure_foreign_table_privilege( &self, name: &str, privilege: TableAclPrivilege, ) -> Result<(), SQLError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".