pub struct LocalArtifact {
pub path: PathBuf,
pub metadata: ArtifactMetadata,
pub checksum: String,
}Expand description
Local artifact information for publishing
Fields§
§path: PathBufPath to the artifact file
metadata: ArtifactMetadataArtifact metadata parsed from filename
checksum: StringComputed SHA256 checksum
Trait Implementations§
Source§impl Clone for LocalArtifact
impl Clone for LocalArtifact
Source§fn clone(&self) -> LocalArtifact
fn clone(&self) -> LocalArtifact
Returns a duplicate of the value. Read more
1.0.0 · 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 LocalArtifact
impl RefUnwindSafe for LocalArtifact
impl Send for LocalArtifact
impl Sync for LocalArtifact
impl Unpin for LocalArtifact
impl UnsafeUnpin for LocalArtifact
impl UnwindSafe for LocalArtifact
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