pub trait User: Send + Sync { // Required methods fn get_id(&self) -> Uuid; fn get_allow_password_login(&self) -> bool; }