pub trait CastWithRules<Output> {
    fn cast_with_rule(self, rule: Self) -> Result<Output>;
}

Required Methods

Implementors