pub trait ProcessCheckerMachineClient {
    // Required method
    fn done(
        &self,
        process_binary: ProcessBinary,
        result: Result<(), ProcessCheckError>
    );
}
Expand description

Client interface for the outcome of a process credential check.

Required Methods§

source

fn done( &self, process_binary: ProcessBinary, result: Result<(), ProcessCheckError> )

Check is finished, and the check result is in result.0

If result is Ok(()), the credentials were accepted. If result is Err, the credentials were not accepted.

Implementors§