pub trait IntoArtifact {
type IntoArtifact: Artifact;
// Required method
fn into_artifact(self) -> Self::IntoArtifact;
}
Expand description
Get access to some object’s artifact
Required Associated Types§
type IntoArtifact: Artifact
Required Methods§
Sourcefn into_artifact(self) -> Self::IntoArtifact
fn into_artifact(self) -> Self::IntoArtifact
Get an artifact from some type