pub struct StoredProvenance {
pub data: String,
pub source: String,
pub source_created_at: DateTime<Utc>,
pub artifacts: Vec<StoredArtifact>,
}Expand description
KennedyServer provenance stored as one opaque Kweb object payload.
Fields§
§data: String§source: String§source_created_at: DateTime<Utc>§artifacts: Vec<StoredArtifact>Trait Implementations§
Source§impl Clone for StoredProvenance
impl Clone for StoredProvenance
Source§fn clone(&self) -> StoredProvenance
fn clone(&self) -> StoredProvenance
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 StoredProvenance
impl Debug for StoredProvenance
impl Eq for StoredProvenance
Source§impl PartialEq for StoredProvenance
impl PartialEq for StoredProvenance
impl StructuralPartialEq for StoredProvenance
Auto Trait Implementations§
impl Freeze for StoredProvenance
impl RefUnwindSafe for StoredProvenance
impl Send for StoredProvenance
impl Sync for StoredProvenance
impl Unpin for StoredProvenance
impl UnsafeUnpin for StoredProvenance
impl UnwindSafe for StoredProvenance
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