pub trait ValueShapeValidator {
// Required method
fn accepts(&self, domain: &DomainId, value: &Datum) -> bool;
}Expand description
Injected runtime boundary for checking a Datum through a domain Shape.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".