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