1 2 3 4 5 6
pub trait MongoObject { fn new(name: &str) -> Self; fn id(&self) -> String; fn set_id(&mut self, id: &str); fn from_same(&self) -> &Self; }