pub trait ValidationHelperV1:
Debug
+ Send
+ Sync {
// Provided method
fn validate_attestation_occurrence(
&self,
_req: ValidateAttestationOccurrenceRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ValidateAttestationOccurrenceResponse>>> + Send { ... }
}
Expand description
Defines the trait used to implement super::client::ValidationHelperV1.
Application developers may need to implement this trait to mock
client::ValidationHelperV1
. In other use-cases, application developers only
use client::ValidationHelperV1
and need not be concerned with this trait or
its implementations.
Services gain new RPCs routinely. Consequently, this trait gains new methods too. To avoid breaking applications the trait provides a default implementation of each method. Most of these implementations just return an error.
Provided Methods§
Sourcefn validate_attestation_occurrence(
&self,
_req: ValidateAttestationOccurrenceRequest,
_options: RequestOptions,
) -> impl Future<Output = Result<Response<ValidateAttestationOccurrenceResponse>>> + Send
fn validate_attestation_occurrence( &self, _req: ValidateAttestationOccurrenceRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ValidateAttestationOccurrenceResponse>>> + Send
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.