pub trait ArtifactTask:
Task
+ Send
+ Sync
+ 'static {
// Required method
fn get_artifact(task: &Executable<Self>) -> ConfigurableArtifact;
}Expand description
A task that produces an artifact
Required Methods§
Sourcefn get_artifact(task: &Executable<Self>) -> ConfigurableArtifact
fn get_artifact(task: &Executable<Self>) -> ConfigurableArtifact
Get the artifact produced by this task.
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.