pub trait RoutineExecutionAuthority: RoutineSupportAuthority {
// Required methods
fn current_role(&self) -> RoleReference;
fn current_user_has_role_identity_privileges(
&self,
role: RoleIdentity,
) -> bool;
}Required Methods§
fn current_role(&self) -> RoleReference
fn current_user_has_role_identity_privileges(&self, role: RoleIdentity) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".