pub struct BackfillOptions {
pub rebuild: bool,
pub best_effort: bool,
}Fields§
§rebuild: boolClear all analytics rows before replaying JSONL.
best_effort: boolReport corrupt/unknown lines and continue instead of failing.
Trait Implementations§
Source§impl Clone for BackfillOptions
impl Clone for BackfillOptions
Source§fn clone(&self) -> BackfillOptions
fn clone(&self) -> BackfillOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BackfillOptions
Source§impl Debug for BackfillOptions
impl Debug for BackfillOptions
Source§impl Default for BackfillOptions
impl Default for BackfillOptions
Source§fn default() -> BackfillOptions
fn default() -> BackfillOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BackfillOptions
impl RefUnwindSafe for BackfillOptions
impl Send for BackfillOptions
impl Sync for BackfillOptions
impl Unpin for BackfillOptions
impl UnsafeUnpin for BackfillOptions
impl UnwindSafe for BackfillOptions
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