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