usecrate::prelude::*;/// Information needed to copy a FLAC that does not need re-sampling.
pub(crate)structInclude{/// Path to the input file
pubinput: PathBuf,
/// Path to the output file
puboutput: PathBuf,
/// Should the file be hard linked?
pubhard_link:bool,
}