pub fn add_end_slash<S: ?Sized + AsRef<str>>(s: &S) -> Cow<'_, str>
Expand description

Add an ending slash into a string.

assert_eq!("path/", slash_formatter::add_end_slash("path"));