pub trait SelfSubjectReviewGetExt {
// Required method
fn status(&self) -> Option<&SelfSubjectReviewStatus>;
// Provided methods
fn userinfo(&self) -> Option<&UserInfo> { ... }
fn username(&self) -> Option<&str> { ... }
fn uid(&self) -> Option<&str> { ... }
fn groups(&self) -> Option<&[String]> { ... }
fn extra(&self) -> Option<&BTreeMap<String, Vec<String>>> { ... }
}Required Methods§
fn status(&self) -> Option<&SelfSubjectReviewStatus>
Provided Methods§
fn userinfo(&self) -> Option<&UserInfo>
fn username(&self) -> Option<&str>
fn uid(&self) -> Option<&str>
fn groups(&self) -> Option<&[String]>
fn extra(&self) -> Option<&BTreeMap<String, Vec<String>>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".