Struct cargo_metadata::Artifact
source · #[non_exhaustive]pub struct Artifact {
pub package_id: PackageId,
pub manifest_path: Utf8PathBuf,
pub target: Target,
pub profile: ArtifactProfile,
pub features: Vec<String>,
pub filenames: Vec<Utf8PathBuf>,
pub executable: Option<Utf8PathBuf>,
pub fresh: bool,
}
Expand description
A compiler-generated file.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.package_id: PackageId
The package this artifact belongs to
manifest_path: Utf8PathBuf
Path to the Cargo.toml
file
target: Target
The target this artifact was compiled for
profile: ArtifactProfile
The profile this artifact was compiled with
features: Vec<String>
The enabled features for this artifact
filenames: Vec<Utf8PathBuf>
The full paths to the generated artifacts (e.g. binary file and separate debug info)
executable: Option<Utf8PathBuf>
Path to the executable file
fresh: bool
If true, then the files were already generated
Trait Implementations§
source§impl<'de> Deserialize<'de> for Artifact
impl<'de> Deserialize<'de> for Artifact
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more