pub trait ZoneExport {
// Required method
fn export_zone_file<'a>(
&'a self,
zone: &'a str,
) -> impl Future<Output = Result<String>> + Send + 'a;
}Required Methods§
fn export_zone_file<'a>( &'a self, zone: &'a str, ) -> impl Future<Output = Result<String>> + Send + 'a
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".