pub trait XnodeDeployer: Send + Sync {
type ProviderOutput;
// Required method
fn deploy(
&self,
input: DeployInput,
) -> impl Future<Output = Result<DeployOutput<Self::ProviderOutput>, Error>> + Send;
}Required Associated Types§
type ProviderOutput
Required Methods§
Sourcefn deploy(
&self,
input: DeployInput,
) -> impl Future<Output = Result<DeployOutput<Self::ProviderOutput>, Error>> + Send
fn deploy( &self, input: DeployInput, ) -> impl Future<Output = Result<DeployOutput<Self::ProviderOutput>, Error>> + Send
Decide who should be the current controller based on external data
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.