Trait IntoArtifact

Source
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§

Required Methods§

Source

fn into_artifact(self) -> Self::IntoArtifact

Get an artifact from some type

Implementations on Foreign Types§

Source§

impl IntoArtifact for &Path

Source§

impl IntoArtifact for PathBuf

Implementors§