pub struct IngestStep {
pub source: String,
pub target: String,
pub format: String,
pub max_bytes: Option<u64>,
pub max_rows: Option<u64>,
pub loc: Loc,
}Fields§
§source: String§target: String§format: Stringv2.63.0 — the declared wire format of the source bytes
(closed catalog: csv | json). Kept RAW at parse; the v2.63.0
type-checker requires it and validates it (axon-T929) — an
ingest that does not declare what it is parsing is refused.
max_bytes: Option<u64>v2.63.0 — bounds enforced on the RAW byte stream BEFORE any
parsing (the v2.54.0 discipline). None ⇒ the engine’s conservative
defaults apply (bounded by default, never unbounded).
max_rows: Option<u64>§loc: LocTrait Implementations§
Auto Trait Implementations§
impl Freeze for IngestStep
impl RefUnwindSafe for IngestStep
impl Send for IngestStep
impl Sync for IngestStep
impl Unpin for IngestStep
impl UnsafeUnpin for IngestStep
impl UnwindSafe for IngestStep
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