pub struct ModifyThreadRequestToolResourcesCodeInterpreter {
pub file_ids: Option<Vec<String>>,
}
Fields§
§file_ids: Option<Vec<String>>
A list of file IDs made available to the code_interpreter
tool. There can be a maximum of 20 files associated with the tool.
Implementations§
Source§impl ModifyThreadRequestToolResourcesCodeInterpreter
impl ModifyThreadRequestToolResourcesCodeInterpreter
Sourcepub fn builder() -> ModifyThreadRequestToolResourcesCodeInterpreterBuilder<((),)>
pub fn builder() -> ModifyThreadRequestToolResourcesCodeInterpreterBuilder<((),)>
Create a builder for building ModifyThreadRequestToolResourcesCodeInterpreter
.
On the builder, call .file_ids(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of ModifyThreadRequestToolResourcesCodeInterpreter
.
Trait Implementations§
Source§impl Clone for ModifyThreadRequestToolResourcesCodeInterpreter
impl Clone for ModifyThreadRequestToolResourcesCodeInterpreter
Source§fn clone(&self) -> ModifyThreadRequestToolResourcesCodeInterpreter
fn clone(&self) -> ModifyThreadRequestToolResourcesCodeInterpreter
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 Default for ModifyThreadRequestToolResourcesCodeInterpreter
impl Default for ModifyThreadRequestToolResourcesCodeInterpreter
Source§fn default() -> ModifyThreadRequestToolResourcesCodeInterpreter
fn default() -> ModifyThreadRequestToolResourcesCodeInterpreter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModifyThreadRequestToolResourcesCodeInterpreter
impl<'de> Deserialize<'de> for ModifyThreadRequestToolResourcesCodeInterpreter
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 ModifyThreadRequestToolResourcesCodeInterpreter
impl PartialEq for ModifyThreadRequestToolResourcesCodeInterpreter
Source§fn eq(&self, other: &ModifyThreadRequestToolResourcesCodeInterpreter) -> bool
fn eq(&self, other: &ModifyThreadRequestToolResourcesCodeInterpreter) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyThreadRequestToolResourcesCodeInterpreter
Auto Trait Implementations§
impl Freeze for ModifyThreadRequestToolResourcesCodeInterpreter
impl RefUnwindSafe for ModifyThreadRequestToolResourcesCodeInterpreter
impl Send for ModifyThreadRequestToolResourcesCodeInterpreter
impl Sync for ModifyThreadRequestToolResourcesCodeInterpreter
impl Unpin for ModifyThreadRequestToolResourcesCodeInterpreter
impl UnwindSafe for ModifyThreadRequestToolResourcesCodeInterpreter
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