Trait ArtifactType
pub trait ArtifactType:
Serialize
+ DeserializeOwned
+ Ord
+ Clone {
// Required method
fn name(&self, flavor: Option<&str>, suffix: Option<&str>) -> String;
}Expand description
A trait representing a type of an Artifact
Required Methods§
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.