pub struct SkillRunRequest {
pub skill_path: PathBuf,
pub receipt_dir: Option<PathBuf>,
pub run_id: Option<String>,
pub answers_path: Option<PathBuf>,
pub inputs: BTreeMap<String, JsonValue>,
pub env: BTreeMap<String, String>,
pub cwd: PathBuf,
pub local_credential: Option<LocalCredentialDescriptor>,
}Fields§
§skill_path: PathBuf§receipt_dir: Option<PathBuf>§run_id: Option<String>§answers_path: Option<PathBuf>§inputs: BTreeMap<String, JsonValue>§env: BTreeMap<String, String>§cwd: PathBuf§local_credential: Option<LocalCredentialDescriptor>Optional one-shot, per-run local credential supplied at invocation.
When present, the runtime derives a CredentialDelivery from it for this
single run. The secret value is never persisted and is redacted from
captured output, receipts, and metadata through the existing delivery
channel. None keeps the current no-credential behavior.
Trait Implementations§
Source§impl Clone for SkillRunRequest
impl Clone for SkillRunRequest
Source§fn clone(&self) -> SkillRunRequest
fn clone(&self) -> SkillRunRequest
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 SkillRunRequest
impl Debug for SkillRunRequest
Source§impl PartialEq for SkillRunRequest
impl PartialEq for SkillRunRequest
Source§fn eq(&self, other: &SkillRunRequest) -> bool
fn eq(&self, other: &SkillRunRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SkillRunRequest
Auto Trait Implementations§
impl Freeze for SkillRunRequest
impl RefUnwindSafe for SkillRunRequest
impl Send for SkillRunRequest
impl Sync for SkillRunRequest
impl Unpin for SkillRunRequest
impl UnsafeUnpin for SkillRunRequest
impl UnwindSafe for SkillRunRequest
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