pub struct SkillInvocation {
pub skill_name: String,
pub source: SkillSource,
pub inputs: JsonObject,
pub resolved_inputs: JsonObject,
pub current_context: Vec<ContextEntry>,
pub skill_directory: PathBuf,
pub env: BTreeMap<String, String>,
pub credential_delivery: CredentialDelivery,
}Fields§
§skill_name: String§source: SkillSource§inputs: JsonObject§resolved_inputs: JsonObject§current_context: Vec<ContextEntry>§skill_directory: PathBuf§env: BTreeMap<String, String>§credential_delivery: CredentialDeliveryTrait Implementations§
Source§impl Clone for SkillInvocation
impl Clone for SkillInvocation
Source§fn clone(&self) -> SkillInvocation
fn clone(&self) -> SkillInvocation
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 moreAuto Trait Implementations§
impl Freeze for SkillInvocation
impl RefUnwindSafe for SkillInvocation
impl Send for SkillInvocation
impl Sync for SkillInvocation
impl Unpin for SkillInvocation
impl UnsafeUnpin for SkillInvocation
impl UnwindSafe for SkillInvocation
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