pub trait CheckCertAllowed<IdtyIndex> {
    // Required method
    fn check_cert_allowed(
        issuer: IdtyIndex,
        receiver: IdtyIndex
    ) -> Result<(), DispatchError>;
}

Required Methods§

source

fn check_cert_allowed( issuer: IdtyIndex, receiver: IdtyIndex ) -> Result<(), DispatchError>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<IdtyIndex> CheckCertAllowed<IdtyIndex> for ()

source§

fn check_cert_allowed( _issuer: IdtyIndex, _receiver: IdtyIndex ) -> Result<(), DispatchError>

Implementors§