pub enum VectorStoreSearchResultContentObjectType {
Text,
}
Expand description
The type of content.
Variants§
Text
text
Trait Implementations§
Source§impl Clone for VectorStoreSearchResultContentObjectType
impl Clone for VectorStoreSearchResultContentObjectType
Source§fn clone(&self) -> VectorStoreSearchResultContentObjectType
fn clone(&self) -> VectorStoreSearchResultContentObjectType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for VectorStoreSearchResultContentObjectType
impl<'de> Deserialize<'de> for VectorStoreSearchResultContentObjectType
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 VectorStoreSearchResultContentObjectType
impl PartialEq for VectorStoreSearchResultContentObjectType
Source§fn eq(&self, other: &VectorStoreSearchResultContentObjectType) -> bool
fn eq(&self, other: &VectorStoreSearchResultContentObjectType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for VectorStoreSearchResultContentObjectType
impl StructuralPartialEq for VectorStoreSearchResultContentObjectType
Auto Trait Implementations§
impl Freeze for VectorStoreSearchResultContentObjectType
impl RefUnwindSafe for VectorStoreSearchResultContentObjectType
impl Send for VectorStoreSearchResultContentObjectType
impl Sync for VectorStoreSearchResultContentObjectType
impl Unpin for VectorStoreSearchResultContentObjectType
impl UnwindSafe for VectorStoreSearchResultContentObjectType
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