pub trait SealIssue: ValidationLog + Error {
type Seal;
// Required method
fn seal(&self) -> &Self::Seal;
}
Expand description
Trait for concrete implementations of seal resolution issues reported by
SealResolver
s during client-side-validation process
Required Associated Types§
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.