pub struct ArtifactStatus {
pub valid: bool,
pub built_from_hash: String,
pub build_time: Instant,
}Expand description
Status of a build artifact.
Fields§
§valid: boolWhether the artifact is still valid.
built_from_hash: StringHash of the source that produced this artifact.
build_time: InstantWhen the artifact was built.
Trait Implementations§
Source§impl Clone for ArtifactStatus
impl Clone for ArtifactStatus
Source§fn clone(&self) -> ArtifactStatus
fn clone(&self) -> ArtifactStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ArtifactStatus
impl RefUnwindSafe for ArtifactStatus
impl Send for ArtifactStatus
impl Sync for ArtifactStatus
impl Unpin for ArtifactStatus
impl UnsafeUnpin for ArtifactStatus
impl UnwindSafe for ArtifactStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more