pub enum VectorStoreFileObjectChunkingStrategy {
Other,
Static {
static: StaticChunkingStrategy,
},
}
Variants§
Other
This is returned when the chunking strategy is unknown. Typically, this is because the file was indexed before the chunking_strategy
concept was introduced in the API.
Static
Fields
§
static: StaticChunkingStrategy
Trait Implementations§
Source§impl Clone for VectorStoreFileObjectChunkingStrategy
impl Clone for VectorStoreFileObjectChunkingStrategy
Source§fn clone(&self) -> VectorStoreFileObjectChunkingStrategy
fn clone(&self) -> VectorStoreFileObjectChunkingStrategy
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 VectorStoreFileObjectChunkingStrategy
impl<'de> Deserialize<'de> for VectorStoreFileObjectChunkingStrategy
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 VectorStoreFileObjectChunkingStrategy
impl PartialEq for VectorStoreFileObjectChunkingStrategy
Source§fn eq(&self, other: &VectorStoreFileObjectChunkingStrategy) -> bool
fn eq(&self, other: &VectorStoreFileObjectChunkingStrategy) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for VectorStoreFileObjectChunkingStrategy
Auto Trait Implementations§
impl Freeze for VectorStoreFileObjectChunkingStrategy
impl RefUnwindSafe for VectorStoreFileObjectChunkingStrategy
impl Send for VectorStoreFileObjectChunkingStrategy
impl Sync for VectorStoreFileObjectChunkingStrategy
impl Unpin for VectorStoreFileObjectChunkingStrategy
impl UnwindSafe for VectorStoreFileObjectChunkingStrategy
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