pub trait DeployProgress: Send + Sync {
// Required methods
fn event(&self, event: &DeployEvent<'_>);
fn confirm(&self, prompt: &DeployPrompt) -> SyncResult<bool>;
}Required Methods§
fn event(&self, event: &DeployEvent<'_>)
fn confirm(&self, prompt: &DeployPrompt) -> SyncResult<bool>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".