use crate::;
/// Ability to correct the sizes in a [`DataTree`] by reducing the size of recorded shared links.
///
/// The input tree is assumed to be not yet deduplicated.
/// Do deduplicate the sizes of hardlinks.
pub type Do<Size> = HardlinkAware;
/// Do not deduplicate the sizes of hardlinks.
pub type DoNot = HardlinkIgnorant;