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