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