pub struct ExternalAgentProfile {Show 13 fields
pub agent_id: String,
pub protocol: ExternalAgentProtocol,
pub agent_card_url: Option<String>,
pub rpc_url_override: Option<String>,
pub auth_ref: Option<String>,
pub tenant: Option<String>,
pub permission_profile: String,
pub skill: Option<String>,
pub allow_non_streaming_fallback: bool,
pub worker_bin: Option<String>,
pub worker_args: Vec<String>,
pub fabric_dir: Option<String>,
pub executor: Option<String>,
}Fields§
§agent_id: String§protocol: ExternalAgentProtocol§agent_card_url: Option<String>§rpc_url_override: Option<String>§auth_ref: Option<String>§tenant: Option<String>§permission_profile: String§skill: Option<String>§allow_non_streaming_fallback: bool§worker_bin: Option<String>Actor protocol only: path to the worker binary to spawn.
worker_args: Vec<String>Actor protocol only: fixed arguments passed to the worker binary
(e.g. ["subagent-worker"] when worker_bin is the main bamboo
binary). Per-child data never rides here — it goes in the spec.
fabric_dir: Option<String>Actor protocol only: directory the worker self-registers into (Tier-1 file fabric). Defaults to a per-user temp dir when unset.
executor: Option<String>Actor protocol only: which engine the worker runs.
"bamboo_runtime" (default) for the real agent loop, "echo" for a
dependency-free smoke run through the whole chain.
Trait Implementations§
Source§impl Clone for ExternalAgentProfile
impl Clone for ExternalAgentProfile
Source§fn clone(&self) -> ExternalAgentProfile
fn clone(&self) -> ExternalAgentProfile
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 ExternalAgentProfile
impl Debug for ExternalAgentProfile
Source§impl<'de> Deserialize<'de> for ExternalAgentProfile
impl<'de> Deserialize<'de> for ExternalAgentProfile
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
Auto Trait Implementations§
impl Freeze for ExternalAgentProfile
impl RefUnwindSafe for ExternalAgentProfile
impl Send for ExternalAgentProfile
impl Sync for ExternalAgentProfile
impl Unpin for ExternalAgentProfile
impl UnsafeUnpin for ExternalAgentProfile
impl UnwindSafe for ExternalAgentProfile
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