pub struct SupplyChainInfo {
pub source_url: String,
pub commit_hash: String,
pub build_timestamp: u64,
pub dependencies: HashMap<String, String>,
pub build_environment: String,
pub verifier_signature: Option<String>,
}Expand description
Supply chain verification data
Fields§
§source_url: StringSource repository URL
commit_hash: StringCommit hash
build_timestamp: u64Build timestamp
dependencies: HashMap<String, String>Dependencies with versions
build_environment: StringBuild environment info
verifier_signature: Option<String>Verifier signature
Trait Implementations§
Source§impl Clone for SupplyChainInfo
impl Clone for SupplyChainInfo
Source§fn clone(&self) -> SupplyChainInfo
fn clone(&self) -> SupplyChainInfo
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 moreSource§impl Debug for SupplyChainInfo
impl Debug for SupplyChainInfo
Source§impl<'de> Deserialize<'de> for SupplyChainInfo
impl<'de> Deserialize<'de> for SupplyChainInfo
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
Auto Trait Implementations§
impl Freeze for SupplyChainInfo
impl RefUnwindSafe for SupplyChainInfo
impl Send for SupplyChainInfo
impl Sync for SupplyChainInfo
impl Unpin for SupplyChainInfo
impl UnwindSafe for SupplyChainInfo
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