pub struct ExportStamp {
pub layer: String,
pub manifest_digest: String,
pub kind: String,
}Expand description
The recorded provenance of an export: which layer produced it, that layer’s signed-manifest digest (the join key), and which export shape it is.
Fields§
§layer: StringThe layer identity, e.g. 2026.08.0.
manifest_digest: Stringsha256:<hex> of the DSSE-signed layer manifest.
kind: StringThe export shape: cargo | crates-vendor | bazel-distdir.
Trait Implementations§
Source§impl Clone for ExportStamp
impl Clone for ExportStamp
Source§fn clone(&self) -> ExportStamp
fn clone(&self) -> ExportStamp
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 ExportStamp
impl Debug for ExportStamp
Source§impl<'de> Deserialize<'de> for ExportStamp
impl<'de> Deserialize<'de> for ExportStamp
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 ExportStamp
Source§impl PartialEq for ExportStamp
impl PartialEq for ExportStamp
Source§impl Serialize for ExportStamp
impl Serialize for ExportStamp
impl StructuralPartialEq for ExportStamp
Auto Trait Implementations§
impl Freeze for ExportStamp
impl RefUnwindSafe for ExportStamp
impl Send for ExportStamp
impl Sync for ExportStamp
impl Unpin for ExportStamp
impl UnsafeUnpin for ExportStamp
impl UnwindSafe for ExportStamp
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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