pub struct BoundaryToolInvocation {
pub tool_name: String,
pub invocation_id: String,
pub input_ref: Option<String>,
pub output_ref: Option<String>,
pub outcome: BoundaryToolOutcome,
}Expand description
Tool provenance item in a boundary receipt.
Fields§
§tool_name: StringTool name.
invocation_id: StringInvocation identifier.
input_ref: Option<String>Stable input anchor.
output_ref: Option<String>Stable output anchor.
outcome: BoundaryToolOutcomeInvocation outcome.
Trait Implementations§
Source§impl Clone for BoundaryToolInvocation
impl Clone for BoundaryToolInvocation
Source§fn clone(&self) -> BoundaryToolInvocation
fn clone(&self) -> BoundaryToolInvocation
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 BoundaryToolInvocation
impl Debug for BoundaryToolInvocation
Source§impl<'de> Deserialize<'de> for BoundaryToolInvocation
impl<'de> Deserialize<'de> for BoundaryToolInvocation
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 BoundaryToolInvocation
impl JsonSchema for BoundaryToolInvocation
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 moreSource§impl PartialEq for BoundaryToolInvocation
impl PartialEq for BoundaryToolInvocation
Source§fn eq(&self, other: &BoundaryToolInvocation) -> bool
fn eq(&self, other: &BoundaryToolInvocation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BoundaryToolInvocation
impl Serialize for BoundaryToolInvocation
impl Eq for BoundaryToolInvocation
impl StructuralPartialEq for BoundaryToolInvocation
Auto Trait Implementations§
impl Freeze for BoundaryToolInvocation
impl RefUnwindSafe for BoundaryToolInvocation
impl Send for BoundaryToolInvocation
impl Sync for BoundaryToolInvocation
impl Unpin for BoundaryToolInvocation
impl UnsafeUnpin for BoundaryToolInvocation
impl UnwindSafe for BoundaryToolInvocation
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