#[cfg(doc)]
use crate::Diff;
#[cfg(doc)]
use std::fmt::Display;
#[derive(Debug, Default, Clone)]
pub struct DisplayDiffOpts {
pub(crate) color: bool,
}
impl DisplayDiffOpts {
pub fn new() -> Self {
Default::default()
}
pub fn color(self, color: bool) -> Self {
Self { color }
}
}