#[non_exhaustive]pub enum ChunkMode {
LayoutBasedChunkingConfig(Box<LayoutBasedChunkingConfig>),
}Available on crate feature
data-store-service only.Expand description
Additional configs that defines the behavior of the chunking.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
LayoutBasedChunkingConfig(Box<LayoutBasedChunkingConfig>)
Configuration for the layout based chunking.
Trait Implementations§
impl StructuralPartialEq for ChunkMode
Auto Trait Implementations§
impl Freeze for ChunkMode
impl RefUnwindSafe for ChunkMode
impl Send for ChunkMode
impl Sync for ChunkMode
impl Unpin for ChunkMode
impl UnwindSafe for ChunkMode
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