pub struct RunManifest {
pub op_id: OpId,
pub op_version: String,
pub input_params: Value,
pub run_config: RunConfig,
pub build: BuildProvenance,
}Expand description
Minimal run manifest shape (stored as an artifact; hashed via canonical JSON).
Note: input_params MUST be canonical-JSON hashable and MUST NOT contain secrets.
Fields§
§op_id: OpIdStable identifier for the operation being executed.
op_version: StringOperation version string included in the manifest hash.
input_params: ValueCanonical JSON input parameters for the operation.
run_config: RunConfigRun policy captured as part of the manifest.
build: BuildProvenanceBuild metadata used for reproducibility and provenance.
Trait Implementations§
Source§impl Clone for RunManifest
impl Clone for RunManifest
Source§fn clone(&self) -> RunManifest
fn clone(&self) -> RunManifest
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 RunManifest
impl Debug for RunManifest
Source§impl<'de> Deserialize<'de> for RunManifest
impl<'de> Deserialize<'de> for RunManifest
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
Source§impl PartialEq for RunManifest
impl PartialEq for RunManifest
Source§impl Serialize for RunManifest
impl Serialize for RunManifest
impl Eq for RunManifest
impl StructuralPartialEq for RunManifest
Auto Trait Implementations§
impl Freeze for RunManifest
impl RefUnwindSafe for RunManifest
impl Send for RunManifest
impl Sync for RunManifest
impl Unpin for RunManifest
impl UnsafeUnpin for RunManifest
impl UnwindSafe for RunManifest
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