pub struct Provenance {
pub aap_version: String,
pub artifact_id: String,
pub agent_id: String,
pub action: String,
pub input_hash: String,
pub output_hash: String,
pub authorization_id: String,
pub timestamp: DateTime<Utc>,
pub target: Option<String>,
pub parent_artifact_id: Option<String>,
pub signature: String,
}Expand description
Provenance records the immutable origin of an agent-produced artifact.
Fields§
§aap_version: String§artifact_id: String§agent_id: String§action: String§input_hash: String§output_hash: String§timestamp: DateTime<Utc>§target: Option<String>§parent_artifact_id: Option<String>§signature: StringImplementations§
Trait Implementations§
Source§impl Clone for Provenance
impl Clone for Provenance
Source§fn clone(&self) -> Provenance
fn clone(&self) -> Provenance
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 Provenance
impl Debug for Provenance
Source§impl<'de> Deserialize<'de> for Provenance
impl<'de> Deserialize<'de> for Provenance
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 Provenance
impl RefUnwindSafe for Provenance
impl Send for Provenance
impl Sync for Provenance
impl Unpin for Provenance
impl UnsafeUnpin for Provenance
impl UnwindSafe for Provenance
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