pub struct Artifact<'a> {
pub package_id: PackageId,
pub manifest_path: PathBuf,
pub target: &'a Target,
pub profile: ArtifactProfile,
pub features: Vec<String>,
pub filenames: Vec<PathBuf>,
pub executable: Option<PathBuf>,
pub fresh: bool,
}
Fields
package_id: PackageId
manifest_path: PathBuf
target: &'a Target
profile: ArtifactProfile
features: Vec<String>
filenames: Vec<PathBuf>
executable: Option<PathBuf>
fresh: bool
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Artifact<'a>
impl<'a> Send for Artifact<'a>
impl<'a> Sync for Artifact<'a>
impl<'a> Unpin for Artifact<'a>
impl<'a> UnwindSafe for Artifact<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more