pub trait ObjectId { // Required methods fn id(&self) -> Option<Uuid>; fn set_id(&mut self, id: Uuid); fn username(&self) -> String; }