pub struct IngestionOptions {
pub format: Option<IngestionFormat>,
pub excel_sheet_selection: ExcelSheetSelection,
pub observer: Option<Arc<dyn IngestionObserver>>,
pub alert_at_or_above: IngestionSeverity,
}Expand description
Options controlling unified ingestion behavior.
Use Default for common cases.
Fields§
§format: Option<IngestionFormat>If None, auto-detect format from file extension.
excel_sheet_selection: ExcelSheetSelectionExcel-specific options.
observer: Option<Arc<dyn IngestionObserver>>Optional observer for logging/alerts.
alert_at_or_above: IngestionSeveritySeverity threshold at which on_alert is invoked.
Trait Implementations§
Source§impl Clone for IngestionOptions
impl Clone for IngestionOptions
Source§fn clone(&self) -> IngestionOptions
fn clone(&self) -> IngestionOptions
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 IngestionOptions
impl Debug for IngestionOptions
Auto Trait Implementations§
impl Freeze for IngestionOptions
impl !RefUnwindSafe for IngestionOptions
impl Send for IngestionOptions
impl Sync for IngestionOptions
impl Unpin for IngestionOptions
impl !UnwindSafe for IngestionOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more