pub trait Options<T> {
// Required method
fn apply(&self, target: &T) -> Result<(), ErrorCode>;
}Expand description
Options interface
pub trait Options<T> {
// Required method
fn apply(&self, target: &T) -> Result<(), ErrorCode>;
}Options interface