7 lines
157 B
Rust
7 lines
157 B
Rust
|
|
use crate::error::DrawerError;
|
||
|
|
|
||
|
|
pub trait Operation {
|
||
|
|
fn perform(&self) -> Result<(), DrawerError>;
|
||
|
|
fn validate(&self) -> Result<(), DrawerError>;
|
||
|
|
}
|