pub trait AppCredentialsPolicyClient<'a> {
    // Required method
    fn check_done(
        &self,
        result: Result<CheckResult, ErrorCode>,
        credentials: TbfFooterV2Credentials,
        integrity_region: &'a [u8]
    );
}
Expand description

Receives callbacks on whether a credential was accepted or not.

Required Methods§

source

fn check_done( &self, result: Result<CheckResult, ErrorCode>, credentials: TbfFooterV2Credentials, integrity_region: &'a [u8] )

The check for a particular credential is complete. Result of the check is in result.

Implementors§