pub struct UpdateVectorStoreFileAttributesRequest {
pub attributes: Option<VectorStoreFileAttributes>,
}
Fields§
§attributes: Option<VectorStoreFileAttributes>
Implementations§
Source§impl UpdateVectorStoreFileAttributesRequest
impl UpdateVectorStoreFileAttributesRequest
Sourcepub fn builder() -> UpdateVectorStoreFileAttributesRequestBuilder<((),)>
pub fn builder() -> UpdateVectorStoreFileAttributesRequestBuilder<((),)>
Create a builder for building UpdateVectorStoreFileAttributesRequest
.
On the builder, call .attributes(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of UpdateVectorStoreFileAttributesRequest
.
Trait Implementations§
Source§impl Clone for UpdateVectorStoreFileAttributesRequest
impl Clone for UpdateVectorStoreFileAttributesRequest
Source§fn clone(&self) -> UpdateVectorStoreFileAttributesRequest
fn clone(&self) -> UpdateVectorStoreFileAttributesRequest
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<'de> Deserialize<'de> for UpdateVectorStoreFileAttributesRequest
impl<'de> Deserialize<'de> for UpdateVectorStoreFileAttributesRequest
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 UpdateVectorStoreFileAttributesRequest
impl PartialEq for UpdateVectorStoreFileAttributesRequest
Source§fn eq(&self, other: &UpdateVectorStoreFileAttributesRequest) -> bool
fn eq(&self, other: &UpdateVectorStoreFileAttributesRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateVectorStoreFileAttributesRequest
Auto Trait Implementations§
impl Freeze for UpdateVectorStoreFileAttributesRequest
impl RefUnwindSafe for UpdateVectorStoreFileAttributesRequest
impl Send for UpdateVectorStoreFileAttributesRequest
impl Sync for UpdateVectorStoreFileAttributesRequest
impl Unpin for UpdateVectorStoreFileAttributesRequest
impl UnwindSafe for UpdateVectorStoreFileAttributesRequest
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