pub trait IntoRuleOverload<Marker> {
type Target: RuleOverload + 'static;
// Required method
fn into_overload(self) -> Self::Target;
}
Expand description
Trait for things convertible into rule overloads
pub trait IntoRuleOverload<Marker> {
type Target: RuleOverload + 'static;
// Required method
fn into_overload(self) -> Self::Target;
}
Trait for things convertible into rule overloads