pub struct CallFunctionPayload {
pub call_function: FunctionCall,
pub function_call_id: String,
pub want_response: bool,
}Fields§
§call_function: FunctionCall§function_call_id: String§want_response: boolTrait Implementations§
Source§impl Clone for CallFunctionPayload
impl Clone for CallFunctionPayload
Source§fn clone(&self) -> CallFunctionPayload
fn clone(&self) -> CallFunctionPayload
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 CallFunctionPayload
impl Debug for CallFunctionPayload
Source§impl<'de> Deserialize<'de> for CallFunctionPayload
impl<'de> Deserialize<'de> for CallFunctionPayload
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
Source§impl PartialEq for CallFunctionPayload
impl PartialEq for CallFunctionPayload
Source§fn eq(&self, other: &CallFunctionPayload) -> bool
fn eq(&self, other: &CallFunctionPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallFunctionPayload
impl Serialize for CallFunctionPayload
impl StructuralPartialEq for CallFunctionPayload
Auto Trait Implementations§
impl Freeze for CallFunctionPayload
impl RefUnwindSafe for CallFunctionPayload
impl Send for CallFunctionPayload
impl Sync for CallFunctionPayload
impl Unpin for CallFunctionPayload
impl UnsafeUnpin for CallFunctionPayload
impl UnwindSafe for CallFunctionPayload
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