pub struct AssistantToolFileSearchResources {
pub vector_store_ids: Vec<String>,
}
Fields§
§vector_store_ids: 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.
Trait Implementations§
Source§impl Clone for AssistantToolFileSearchResources
impl Clone for AssistantToolFileSearchResources
Source§fn clone(&self) -> AssistantToolFileSearchResources
fn clone(&self) -> AssistantToolFileSearchResources
Returns a copy 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 AssistantToolFileSearchResources
impl Default for AssistantToolFileSearchResources
Source§fn default() -> AssistantToolFileSearchResources
fn default() -> AssistantToolFileSearchResources
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssistantToolFileSearchResources
impl<'de> Deserialize<'de> for AssistantToolFileSearchResources
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 From<AssistantToolFileSearchResources> for AssistantToolResources
impl From<AssistantToolFileSearchResources> for AssistantToolResources
Source§fn from(value: AssistantToolFileSearchResources) -> Self
fn from(value: AssistantToolFileSearchResources) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AssistantToolFileSearchResources
impl PartialEq for AssistantToolFileSearchResources
Source§fn eq(&self, other: &AssistantToolFileSearchResources) -> bool
fn eq(&self, other: &AssistantToolFileSearchResources) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AssistantToolFileSearchResources
Auto Trait Implementations§
impl Freeze for AssistantToolFileSearchResources
impl RefUnwindSafe for AssistantToolFileSearchResources
impl Send for AssistantToolFileSearchResources
impl Sync for AssistantToolFileSearchResources
impl Unpin for AssistantToolFileSearchResources
impl UnwindSafe for AssistantToolFileSearchResources
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