pub trait UserTypeExt {
// Required methods
fn creation_date(&self) -> DateTime<Utc>;
fn get_attribute(&self, name: &str) -> String;
fn get_email(&self) -> String;
fn attributes_values_to_string(&self, separator: &str) -> String;
fn attributes_keys_to_string(&self, separator: &str) -> String;
}