pub trait IsAdmin { // Provided method fn is_admin(&self) -> bool { ... } }
Trait for admin role detection.
Returns whether the user is an admin.