pub struct NativeBuildArtifactCacheManifest {
pub schema_version: u32,
pub artifact_id: String,
pub file_name: String,
pub input_signature: String,
pub input_signature_sha256: String,
pub artifact_sha256: String,
pub artifact_size_bytes: u64,
}Fields§
§schema_version: u32§artifact_id: String§file_name: String§input_signature: String§input_signature_sha256: String§artifact_sha256: String§artifact_size_bytes: u64Trait Implementations§
Source§impl Clone for NativeBuildArtifactCacheManifest
impl Clone for NativeBuildArtifactCacheManifest
Source§fn clone(&self) -> NativeBuildArtifactCacheManifest
fn clone(&self) -> NativeBuildArtifactCacheManifest
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 moreSource§impl<'de> Deserialize<'de> for NativeBuildArtifactCacheManifest
impl<'de> Deserialize<'de> for NativeBuildArtifactCacheManifest
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
impl Eq for NativeBuildArtifactCacheManifest
impl StructuralPartialEq for NativeBuildArtifactCacheManifest
Auto Trait Implementations§
impl Freeze for NativeBuildArtifactCacheManifest
impl RefUnwindSafe for NativeBuildArtifactCacheManifest
impl Send for NativeBuildArtifactCacheManifest
impl Sync for NativeBuildArtifactCacheManifest
impl Unpin for NativeBuildArtifactCacheManifest
impl UnsafeUnpin for NativeBuildArtifactCacheManifest
impl UnwindSafe for NativeBuildArtifactCacheManifest
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