1 2 3 4 5 6 7 8 9
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub(crate) enum Side {
/// The left-hand side, or the 'before' file. Often abbreviated to
/// LHS.
Left,
/// The right-hand side, or the 'after' file. Often abbreviated to
/// RHS.
Right,
}