pub struct ForgeToolReceiptV1 {Show 21 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 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§error_class: Option<String>§retry_owner: String§replay_link: Option<String>§provider_call_id: Option<String>§raw_payload: ValueTrait Implementations§
Source§impl Clone for ForgeToolReceiptV1
impl Clone for ForgeToolReceiptV1
Source§fn clone(&self) -> ForgeToolReceiptV1
fn clone(&self) -> ForgeToolReceiptV1
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 ForgeToolReceiptV1
impl Debug for ForgeToolReceiptV1
Source§impl<'de> Deserialize<'de> for ForgeToolReceiptV1
impl<'de> Deserialize<'de> for ForgeToolReceiptV1
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 ForgeToolReceiptV1
impl JsonSchema for ForgeToolReceiptV1
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 ForgeToolReceiptV1
impl RefUnwindSafe for ForgeToolReceiptV1
impl Send for ForgeToolReceiptV1
impl Sync for ForgeToolReceiptV1
impl Unpin for ForgeToolReceiptV1
impl UnsafeUnpin for ForgeToolReceiptV1
impl UnwindSafe for ForgeToolReceiptV1
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