pub trait AeronArchiveCredentialsChallengeSupplierFuncCallback {
    // Required method
    fn handle_aeron_archive_credentials_challenge_supplier_func(
        &mut self,
        encoded_challenge: AeronArchiveEncodedCredentials,
    ) -> *mut aeron_archive_encoded_credentials_t;
}
Expand description

Callback to return encoded credentials given a specific encoded challenge.

@param encoded_challenge to use to generate the encoded credentials @return encoded credentials to include with the challenge response

Required Methods§

Implementors§