pub enum ChunkingStrategyResponse {
Static(StaticChunkingStrategyResponseParam),
Other(OtherChunkingStrategyResponseParam),
}
Expand description
The strategy used to chunk the file.
Variants§
Trait Implementations§
Source§impl Clone for ChunkingStrategyResponse
impl Clone for ChunkingStrategyResponse
Source§fn clone(&self) -> ChunkingStrategyResponse
fn clone(&self) -> ChunkingStrategyResponse
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 Debug for ChunkingStrategyResponse
impl Debug for ChunkingStrategyResponse
Source§impl<'de> Deserialize<'de> for ChunkingStrategyResponse
impl<'de> Deserialize<'de> for ChunkingStrategyResponse
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 ChunkingStrategyResponse
impl PartialEq for ChunkingStrategyResponse
Source§impl Serialize for ChunkingStrategyResponse
impl Serialize for ChunkingStrategyResponse
impl Copy for ChunkingStrategyResponse
impl StructuralPartialEq for ChunkingStrategyResponse
Auto Trait Implementations§
impl Freeze for ChunkingStrategyResponse
impl RefUnwindSafe for ChunkingStrategyResponse
impl Send for ChunkingStrategyResponse
impl Sync for ChunkingStrategyResponse
impl Unpin for ChunkingStrategyResponse
impl UnwindSafe for ChunkingStrategyResponse
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