pub enum CodeInterpreterToolCallOutputs {
Logs(CodeInterpreterOutputLogs),
Image(CodeInterpreterOutputImage),
}
Variants§
Trait Implementations§
Source§impl Clone for CodeInterpreterToolCallOutputs
impl Clone for CodeInterpreterToolCallOutputs
Source§fn clone(&self) -> CodeInterpreterToolCallOutputs
fn clone(&self) -> CodeInterpreterToolCallOutputs
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for CodeInterpreterToolCallOutputs
impl<'de> Deserialize<'de> for CodeInterpreterToolCallOutputs
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 CodeInterpreterToolCallOutputs
impl PartialEq for CodeInterpreterToolCallOutputs
Source§fn eq(&self, other: &CodeInterpreterToolCallOutputs) -> bool
fn eq(&self, other: &CodeInterpreterToolCallOutputs) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CodeInterpreterToolCallOutputs
Auto Trait Implementations§
impl Freeze for CodeInterpreterToolCallOutputs
impl RefUnwindSafe for CodeInterpreterToolCallOutputs
impl Send for CodeInterpreterToolCallOutputs
impl Sync for CodeInterpreterToolCallOutputs
impl Unpin for CodeInterpreterToolCallOutputs
impl UnwindSafe for CodeInterpreterToolCallOutputs
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