pub struct DisruptionEffect {
pub skip_generation: bool,
pub format_transform: Option<FormatChange>,
pub add_recovery_markers: bool,
pub duplicate_to_system: Option<String>,
pub process_changes: Vec<ProcessChangeType>,
pub labels: HashMap<String, String>,
}Expand description
Effects that a disruption can have on generated data.
Fields§
§skip_generation: boolSkip generating data for this date
format_transform: Option<FormatChange>Apply format transformation
add_recovery_markers: boolAdd recovery/backfill markers
duplicate_to_system: Option<String>Duplicate to secondary system
process_changes: Vec<ProcessChangeType>Apply process rule changes
labels: HashMap<String, String>Labels to add to generated records
Trait Implementations§
Source§impl Clone for DisruptionEffect
impl Clone for DisruptionEffect
Source§fn clone(&self) -> DisruptionEffect
fn clone(&self) -> DisruptionEffect
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 DisruptionEffect
impl Debug for DisruptionEffect
Source§impl Default for DisruptionEffect
impl Default for DisruptionEffect
Source§fn default() -> DisruptionEffect
fn default() -> DisruptionEffect
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DisruptionEffect
impl RefUnwindSafe for DisruptionEffect
impl Send for DisruptionEffect
impl Sync for DisruptionEffect
impl Unpin for DisruptionEffect
impl UnwindSafe for DisruptionEffect
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