pub trait RoleReferenceNames {
// Required methods
fn current_user_name(&self) -> String;
fn session_user_name(&self) -> String;
}Expand description
Session names used by CURRENT_USER and SESSION_USER role references.
Required Methods§
fn current_user_name(&self) -> String
fn session_user_name(&self) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".