/// Pathable `str` typically for Unix system path or glob.
///
/// Example:
///
/// ```
/// let s: PathableStr = "foo/**/*";
/// ```
///
pub type PathableStr = str;
/// Pathable `String` typically for Unix system path or glob.
///
/// Example:
///
/// ```
/// let s: PathableString = PathableString::from("foo/**/*");
/// ```
///
pub type PathableString = String;