/// Pathable `String` typically for Unix system path or glob.
///
/// Example:
///
/// ```
/// let s: PathableString = PathableString::from("foo/**/*");
/// ```
///
pub type PathableString = String;
/// TOML `String` typically for Tom's Obvious Minimal Language.
///
/// Example:
///
/// ```
/// let s: TomlString = TomlString::from("alfa = \"bravo\"");
/// ```
///
pub type TomlString = String;