pub struct ExternalAgentProfile {
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,
}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: boolTrait 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 · 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