pub trait Rule: Debug {
// Required methods
fn apply(&self, content: &str) -> Result<String, Box<dyn Error>>;
fn name(&self) -> &str;
}
Expand description
ルールのトレイト
pub trait Rule: Debug {
// Required methods
fn apply(&self, content: &str) -> Result<String, Box<dyn Error>>;
fn name(&self) -> &str;
}
ルールのトレイト