pub trait SigChecker: TyCtx {
    // Required method
    fn check(
        &mut self,
        sig: Sig<'_>,
        args: &mut SigCheckContext,
        pol: bool,
    ) -> Option<()>;
}Expand description
A trait to check a signature.
pub trait SigChecker: TyCtx {
    // Required method
    fn check(
        &mut self,
        sig: Sig<'_>,
        args: &mut SigCheckContext,
        pol: bool,
    ) -> Option<()>;
}A trait to check a signature.