pub struct ForgeToolReceiptV2 {Show 28 fields
pub schema_version: String,
pub receipt_id: String,
pub tool_run_id: String,
pub tool_name: String,
pub tool_version: String,
pub backend_kind: String,
pub input_digest: ContentDigest,
pub output_digest_or_refs: Value,
pub policy_hash: ContentDigest,
pub approval_state: String,
pub host_identity: String,
pub started_at: String,
pub finished_at: String,
pub trace_ctx: TraceCtx,
pub attempt_id: AttemptId,
pub trial_id: TrialId,
pub planner_stage: String,
pub deadline: Option<String>,
pub workload_class: Option<String>,
pub budget_context: Option<ForgeToolBudgetContext>,
pub parent_receipt_id: Option<String>,
pub family_receipt_id: Option<String>,
pub replay_parent_receipt_id: Option<String>,
pub error_class: Option<String>,
pub retry_owner: String,
pub replay_link: Option<String>,
pub provider_call_id: Option<String>,
pub raw_payload: Value,
}Fields§
§schema_version: String§receipt_id: String§tool_run_id: String§tool_name: String§tool_version: String§backend_kind: String§input_digest: ContentDigest§output_digest_or_refs: Value§policy_hash: ContentDigest§approval_state: String§host_identity: String§started_at: String§finished_at: String§trace_ctx: TraceCtx§attempt_id: AttemptId§trial_id: TrialId§planner_stage: String§deadline: Option<String>§workload_class: Option<String>§budget_context: Option<ForgeToolBudgetContext>§parent_receipt_id: Option<String>§family_receipt_id: Option<String>§replay_parent_receipt_id: Option<String>§error_class: Option<String>§retry_owner: String§replay_link: Option<String>§provider_call_id: Option<String>§raw_payload: ValueTrait Implementations§
Source§impl Clone for ForgeToolReceiptV2
impl Clone for ForgeToolReceiptV2
Source§fn clone(&self) -> ForgeToolReceiptV2
fn clone(&self) -> ForgeToolReceiptV2
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 ForgeToolReceiptV2
impl Debug for ForgeToolReceiptV2
Source§impl<'de> Deserialize<'de> for ForgeToolReceiptV2
impl<'de> Deserialize<'de> for ForgeToolReceiptV2
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 JsonSchema for ForgeToolReceiptV2
impl JsonSchema for ForgeToolReceiptV2
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ForgeToolReceiptV2
impl RefUnwindSafe for ForgeToolReceiptV2
impl Send for ForgeToolReceiptV2
impl Sync for ForgeToolReceiptV2
impl Unpin for ForgeToolReceiptV2
impl UnsafeUnpin for ForgeToolReceiptV2
impl UnwindSafe for ForgeToolReceiptV2
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