pub struct FunctionCallContent {
pub name: Option<String>,
pub arguments: Option<Struct>,
}Expand description
genai.FunctionCallContent
Fields§
§name: Option<String>§arguments: Option<Struct>Trait Implementations§
Source§impl Clone for FunctionCallContent
impl Clone for FunctionCallContent
Source§fn clone(&self) -> FunctionCallContent
fn clone(&self) -> FunctionCallContent
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 FunctionCallContent
impl Debug for FunctionCallContent
Source§impl Default for FunctionCallContent
impl Default for FunctionCallContent
Source§fn default() -> FunctionCallContent
fn default() -> FunctionCallContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FunctionCallContent
impl<'de> Deserialize<'de> for FunctionCallContent
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 FunctionCallContent
impl PartialEq for FunctionCallContent
Source§impl Serialize for FunctionCallContent
impl Serialize for FunctionCallContent
impl StructuralPartialEq for FunctionCallContent
Auto Trait Implementations§
impl Freeze for FunctionCallContent
impl RefUnwindSafe for FunctionCallContent
impl Send for FunctionCallContent
impl Sync for FunctionCallContent
impl Unpin for FunctionCallContent
impl UnsafeUnpin for FunctionCallContent
impl UnwindSafe for FunctionCallContent
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