1 2 3 4 5 6 7 8
//! # Interface Constants //! //! Shared constants used for formatting Nix output. /// Inner indentation (4 spaces) - used for nested content pub const INDENT_IN: &str = " "; /// Outer indentation (2 spaces) - used for top-level attributes pub const INDENT_OUT: &str = " ";