pub struct BinaryPackagePoolArtifact<'a> {
pub path: &'a str,
pub size: u64,
pub digest: ContentDigest,
}Expand description
Describes a file in the pool to support a binary package.
Fields§
§path: &'a strThe file path relative to the repository root.
size: u64The expected size of the file.
digest: ContentDigestThe expected digest of the file.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for BinaryPackagePoolArtifact<'a>
impl<'a> RefUnwindSafe for BinaryPackagePoolArtifact<'a>
impl<'a> Send for BinaryPackagePoolArtifact<'a>
impl<'a> Sync for BinaryPackagePoolArtifact<'a>
impl<'a> Unpin for BinaryPackagePoolArtifact<'a>
impl<'a> UnsafeUnpin for BinaryPackagePoolArtifact<'a>
impl<'a> UnwindSafe for BinaryPackagePoolArtifact<'a>
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