pub struct CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter {
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 CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
impl CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
Sourcepub fn builder() -> CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreterBuilder<((),)>
pub fn builder() -> CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreterBuilder<((),)>
Create a builder for building CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
.
On the builder, call .file_ids(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
.
Trait Implementations§
Source§impl Clone for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
impl Clone for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
Source§fn clone(
&self,
) -> CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
fn clone( &self, ) -> CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
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 CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
impl Default for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
Source§fn default() -> CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
fn default() -> CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
impl<'de> Deserialize<'de> for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
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 CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
impl PartialEq for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
Source§fn eq(
&self,
other: &CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter,
) -> bool
fn eq( &self, other: &CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
Auto Trait Implementations§
impl Freeze for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
impl RefUnwindSafe for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
impl Send for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
impl Sync for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
impl Unpin for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
impl UnwindSafe for CreateThreadAndRunRequestWithoutStreamToolResourcesCodeInterpreter
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