pub struct ExternalAdapterInvocation {Show 17 fields
pub schema: ExternalAdapterInvocationSchema,
pub protocol_version: ExternalAdapterProtocolVersion,
pub invocation_id: NonEmptyString,
pub adapter_id: NonEmptyString,
pub run_id: NonEmptyString,
pub step_id: NonEmptyString,
pub source_type: NonEmptyString,
pub skill_ref: NonEmptyString,
pub harness_ref: Reference,
pub host_ref: Reference,
pub inputs: JsonObject,
pub resolved_inputs: Option<JsonObject>,
pub cwd: Option<NonEmptyString>,
pub receipt_dir: Option<NonEmptyString>,
pub env: Option<JsonObject>,
pub credential_refs: Option<Vec<ExternalAdapterCredentialReference>>,
pub metadata: Option<JsonObject>,
}Fields§
§schema: ExternalAdapterInvocationSchema§protocol_version: ExternalAdapterProtocolVersion§invocation_id: NonEmptyString§adapter_id: NonEmptyString§run_id: NonEmptyString§step_id: NonEmptyString§source_type: NonEmptyString§skill_ref: NonEmptyString§harness_ref: Reference§host_ref: Reference§inputs: JsonObject§resolved_inputs: Option<JsonObject>§cwd: Option<NonEmptyString>§receipt_dir: Option<NonEmptyString>§env: Option<JsonObject>§credential_refs: Option<Vec<ExternalAdapterCredentialReference>>§metadata: Option<JsonObject>Trait Implementations§
Source§impl Clone for ExternalAdapterInvocation
impl Clone for ExternalAdapterInvocation
Source§fn clone(&self) -> ExternalAdapterInvocation
fn clone(&self) -> ExternalAdapterInvocation
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 ExternalAdapterInvocation
impl Debug for ExternalAdapterInvocation
Source§impl<'de> Deserialize<'de> for ExternalAdapterInvocation
impl<'de> Deserialize<'de> for ExternalAdapterInvocation
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 ExternalAdapterInvocation
impl PartialEq for ExternalAdapterInvocation
Source§fn eq(&self, other: &ExternalAdapterInvocation) -> bool
fn eq(&self, other: &ExternalAdapterInvocation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RunxSchema for ExternalAdapterInvocation
impl RunxSchema for ExternalAdapterInvocation
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
impl StructuralPartialEq for ExternalAdapterInvocation
Auto Trait Implementations§
impl Freeze for ExternalAdapterInvocation
impl RefUnwindSafe for ExternalAdapterInvocation
impl Send for ExternalAdapterInvocation
impl Sync for ExternalAdapterInvocation
impl Unpin for ExternalAdapterInvocation
impl UnsafeUnpin for ExternalAdapterInvocation
impl UnwindSafe for ExternalAdapterInvocation
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