pub struct CodeInterpreterToolAuto {
pub file_ids: Option<Vec<String>>,
}
Expand description
Configuration for a code interpreter container. Optionally specify the IDs of the files to run the code on.
Fields§
§file_ids: Option<Vec<String>>
An optional list of uploaded files to make available to your code.
Implementations§
Trait Implementations§
Source§impl Clone for CodeInterpreterToolAuto
impl Clone for CodeInterpreterToolAuto
Source§fn clone(&self) -> CodeInterpreterToolAuto
fn clone(&self) -> CodeInterpreterToolAuto
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 CodeInterpreterToolAuto
impl Debug for CodeInterpreterToolAuto
Source§impl Default for CodeInterpreterToolAuto
impl Default for CodeInterpreterToolAuto
Source§fn default() -> CodeInterpreterToolAuto
fn default() -> CodeInterpreterToolAuto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeInterpreterToolAuto
impl<'de> Deserialize<'de> for CodeInterpreterToolAuto
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 CodeInterpreterToolAuto
impl PartialEq for CodeInterpreterToolAuto
Source§impl Serialize for CodeInterpreterToolAuto
impl Serialize for CodeInterpreterToolAuto
impl StructuralPartialEq for CodeInterpreterToolAuto
Auto Trait Implementations§
impl Freeze for CodeInterpreterToolAuto
impl RefUnwindSafe for CodeInterpreterToolAuto
impl Send for CodeInterpreterToolAuto
impl Sync for CodeInterpreterToolAuto
impl Unpin for CodeInterpreterToolAuto
impl UnwindSafe for CodeInterpreterToolAuto
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