pub trait Client<'a> {
    // Required method
    fn check_done(
        &self,
        result: Result<CheckResult, ErrorCode>,
        credentials: TbfFooterV2Credentials,
        binary: &'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, binary: &'a [u8] )

Implementors§