pub trait Command {
// Required method
fn exec(&self) -> Result<()>;
}
Expand description
Trait implemented by book data commands.
pub trait Command {
// Required method
fn exec(&self) -> Result<()>;
}
Trait implemented by book data commands.