[][src]Trait ckb_verification::Verifier

pub trait Verifier {
    type Target;
    fn verify(&self, target: &Self::Target) -> Result<(), Error>;
}

Associated Types

type Target

Loading content...

Required methods

fn verify(&self, target: &Self::Target) -> Result<(), Error>

Loading content...

Implementors

impl Verifier for GenesisVerifier[src]

type Target = Consensus

impl<'a> Verifier for BlockVerifier<'a>[src]

type Target = BlockView

impl<'a, T: HeaderResolver, M: BlockMedianTimeContext> Verifier for HeaderVerifier<'a, T, M>[src]

type Target = T

Loading content...