pub trait Versionable { type Error; fn update(&mut self) -> Result<(), Box<Self::Error>>; fn version(&self) -> String; }