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

Object Safety§

This trait is not object safe.

Implementors§