pub trait FromId {
// Required method
fn from_id(conn: Rc<Connection>, id: TypedId) -> Result<Self, FromIdError>
where Self: Sized;
}pub trait FromId {
// Required method
fn from_id(conn: Rc<Connection>, id: TypedId) -> Result<Self, FromIdError>
where Self: Sized;
}