pub trait CustomClaimTypeThings {
    // Required methods
    fn get_displayname(&self) -> String;
    fn get_email(&self) -> Result<String, Redirect>;
    fn get_username(&self) -> String;
}

Required Methods§

source

fn get_displayname(&self) -> String

source

fn get_email(&self) -> Result<String, Redirect>

source

fn get_username(&self) -> String

Implementations on Foreign Types§

source§

impl CustomClaimTypeThings for IdTokenClaims<EmptyAdditionalClaims, CoreGenderClaim>

Implementors§