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