Trait SealIssue

Source
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 SealResolvers during client-side-validation process

Required Associated Types§

Source

type Seal

Type defining single-use-seals used by the client-side-validated data and the seal resolver

Required Methods§

Source

fn seal(&self) -> &Self::Seal

Method returning single-use-seal specific to the reported issue

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.

Implementors§