#[non_exhaustive]pub enum ProcessorFlags {
CustomDocumentExtractionOptions(Box<CustomDocumentExtractionOptions>),
FoundationModelTuningOptions(Box<FoundationModelTuningOptions>),
}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.
CustomDocumentExtractionOptions(Box<CustomDocumentExtractionOptions>)
Options to control Custom Document Extraction (CDE) Processor.
FoundationModelTuningOptions(Box<FoundationModelTuningOptions>)
Options to control foundation model tuning of a processor.
Trait Implementations§
Source§impl Clone for ProcessorFlags
impl Clone for ProcessorFlags
Source§fn clone(&self) -> ProcessorFlags
fn clone(&self) -> ProcessorFlags
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 ProcessorFlags
impl Debug for ProcessorFlags
Source§impl PartialEq for ProcessorFlags
impl PartialEq for ProcessorFlags
impl StructuralPartialEq for ProcessorFlags
Auto Trait Implementations§
impl Freeze for ProcessorFlags
impl RefUnwindSafe for ProcessorFlags
impl Send for ProcessorFlags
impl Sync for ProcessorFlags
impl Unpin for ProcessorFlags
impl UnwindSafe for ProcessorFlags
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