ratatui_toolkit/widgets/code_diff/foundation/enums/
mod.rs

1//! Enumeration types for the code diff module.
2//!
3//! This module contains simple enums used throughout the diff widget:
4//!
5//! - [`DiffLineKind`] - The type of a diff line (context, added, removed, hunk header)
6//! - [`DiffStyle`] - The display style for the diff (side-by-side, unified, inline)
7
8mod diff_line_kind;
9mod diff_style;
10
11pub use diff_line_kind::DiffLineKind;
12pub use diff_style::DiffStyle;