Trait SelfSubjectReviewGetExt

Source
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§

Provided Methods§

Source

fn userinfo(&self) -> Option<&UserInfo>

Source

fn username(&self) -> Option<&str>

Source

fn uid(&self) -> Option<&str>

Source

fn groups(&self) -> Option<&[String]>

Source

fn extra(&self) -> Option<&BTreeMap<String, Vec<String>>>

Implementors§