pub struct AuthToolArguments {
pub function_call_id: String,
pub auth_config: AuthConfig,
}Expand description
Arguments passed to a tool when authentication is required.
Fields§
§function_call_id: StringThe function call ID this auth request is associated with.
auth_config: AuthConfigThe auth configuration describing what credential is needed.
Trait Implementations§
Source§impl Clone for AuthToolArguments
impl Clone for AuthToolArguments
Source§fn clone(&self) -> AuthToolArguments
fn clone(&self) -> AuthToolArguments
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 AuthToolArguments
impl Debug for AuthToolArguments
Source§impl<'de> Deserialize<'de> for AuthToolArguments
impl<'de> Deserialize<'de> for AuthToolArguments
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 AuthToolArguments
impl RefUnwindSafe for AuthToolArguments
impl Send for AuthToolArguments
impl Sync for AuthToolArguments
impl Unpin for AuthToolArguments
impl UnwindSafe for AuthToolArguments
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