pub struct EvidenceRow {
pub artifact_digest: String,
pub signer: IdentityDID,
pub authority_at_release: AuthorityAtSigning,
pub signed_at: Option<u128>,
pub transparency: Option<TransparencyInclusion>,
}Expand description
One row of compliance evidence: the signer’s authority at release.
Fields§
§artifact_digest: StringThe artifact content digest.
signer: IdentityDIDThe signing member’s self-certifying identity.
The signer’s authority at the signing position, by KEL order.
signed_at: Option<u128>The artifact’s in-band signing position, if any.
transparency: Option<TransparencyInclusion>Transparency-log inclusion evidence, when supplied — lets the row prove the artifact’s log membership offline.
Trait Implementations§
Source§impl Clone for EvidenceRow
impl Clone for EvidenceRow
Source§fn clone(&self) -> EvidenceRow
fn clone(&self) -> EvidenceRow
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 Debug for EvidenceRow
impl Debug for EvidenceRow
Source§impl<'de> Deserialize<'de> for EvidenceRow
impl<'de> Deserialize<'de> for EvidenceRow
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EvidenceRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EvidenceRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EvidenceRow
impl PartialEq for EvidenceRow
Source§impl Serialize for EvidenceRow
impl Serialize for EvidenceRow
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for EvidenceRow
Auto Trait Implementations§
impl Freeze for EvidenceRow
impl RefUnwindSafe for EvidenceRow
impl Send for EvidenceRow
impl Sync for EvidenceRow
impl Unpin for EvidenceRow
impl UnsafeUnpin for EvidenceRow
impl UnwindSafe for EvidenceRow
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