pub trait Versionable {
    type Error;

    fn update(&mut self) -> Result<(), Box<Self::Error>>;
    fn version(&self) -> String;
}
Expand description

Required Associated Types§

Required Methods§

Implementors§