pub trait IdentityBlackholeControl {
// Required methods
fn blackhole_identity<'a>(
&'a self,
entry: BlackholedIdentity<&'a str>,
) -> impl Future<Output = Result<BlackholeIdentityOutcome, IdentityBlackholeControlError>> + Send + 'a;
fn unblackhole_identity(
&self,
identity: IdentityHash,
) -> impl Future<Output = Result<UnblackholeIdentityOutcome, IdentityBlackholeControlError>> + Send;
}Required Methods§
fn blackhole_identity<'a>( &'a self, entry: BlackholedIdentity<&'a str>, ) -> impl Future<Output = Result<BlackholeIdentityOutcome, IdentityBlackholeControlError>> + Send + 'a
fn unblackhole_identity( &self, identity: IdentityHash, ) -> impl Future<Output = Result<UnblackholeIdentityOutcome, IdentityBlackholeControlError>> + Send
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".