pub trait LocalConstraint:
Any
+ Display
+ Clone {
const CHR_RULES: &'static str;
// Required methods
fn parse(s: &str) -> IResult<&str, Self>;
fn collect<'a>(fun: &Annotated<'a, &'a ItemFn>) -> Vec<Self>;
}
Expand description
Abstract encoding of a Local Constraint
Required Associated Constants§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.