pub fn should_skip_processing<P1: AsRef<Path>, P2: AsRef<Path>>(
source_path: P1,
output_path: P2,
options_json: &str,
force: bool,
) -> Option<ProcessingCache>Expand description
Check if processing should be skipped based on cache
§Arguments
source_path- Path to the source PDFoutput_path- Path to the output PDFoptions_json- JSON string of processing optionsforce- If true, always return false (force re-processing)
§Returns
Some(cache) if processing should be skipped, None otherwise