pub trait DnsProviderPlugin:
Send
+ Sync
+ 'static {
// Required methods
fn get_issuer_config<'life0, 'async_trait>(
&'life0 self,
request: Request<GetIssuerConfigRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<IssuerConfig>, Status>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn verify_ownership<'life0, 'async_trait>(
&'life0 self,
request: Request<VerifyOwnershipRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<VerifyOwnershipResponse>, Status>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn get_required_settings<'life0, 'async_trait>(
&'life0 self,
request: Request<Empty>,
) -> Pin<Box<dyn Future<Output = Result<Response<ProviderSettingsResponse>, Status>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}Expand description
Generated trait containing gRPC methods that should be implemented for use with DnsProviderPluginServer.