pub trait BuildSubject {
// Required method
fn check(&self) -> Result<(), QuantumError>;
}Expand description
What build() checks of a subject before any stage runs.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".