use indradb::Datastore; use uuid::Uuid; #[derive(Clone)] pub struct User where T: Datastore, { pub datastore: T, pub id: Uuid, pub external_id: Option, } impl User { pub fn property(&self, key: String) -> String {} } pub struct Team { external_id: Option, }