pub enum FunctionCallOutputBody {
String(String),
Array(Vec<FunctionCallOutputContentItem>),
}Expand description
FunctionCallOutputBody
JSON schema
{
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/FunctionCallOutputContentItem"
}
}
]
}Variants§
String(String)
Array(Vec<FunctionCallOutputContentItem>)
Trait Implementations§
Source§impl Clone for FunctionCallOutputBody
impl Clone for FunctionCallOutputBody
Source§fn clone(&self) -> FunctionCallOutputBody
fn clone(&self) -> FunctionCallOutputBody
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 FunctionCallOutputBody
impl Debug for FunctionCallOutputBody
Source§impl<'de> Deserialize<'de> for FunctionCallOutputBody
impl<'de> Deserialize<'de> for FunctionCallOutputBody
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 From<Vec<FunctionCallOutputContentItem>> for FunctionCallOutputBody
impl From<Vec<FunctionCallOutputContentItem>> for FunctionCallOutputBody
Source§fn from(value: Vec<FunctionCallOutputContentItem>) -> Self
fn from(value: Vec<FunctionCallOutputContentItem>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FunctionCallOutputBody
impl RefUnwindSafe for FunctionCallOutputBody
impl Send for FunctionCallOutputBody
impl Sync for FunctionCallOutputBody
impl Unpin for FunctionCallOutputBody
impl UnsafeUnpin for FunctionCallOutputBody
impl UnwindSafe for FunctionCallOutputBody
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