update_kit/applier/types.rs
1use crate::types::ApplyProgress;
2
3/// Options for controlling the apply phase.
4#[derive(Default)]
5pub struct ApplyOptions {
6 /// Callback invoked with progress updates during the apply phase.
7 pub on_progress: Option<Box<dyn Fn(ApplyProgress) + Send + Sync>>,
8 /// Whether to skip checksum verification.
9 pub skip_checksum: bool,
10}