git_next_core/macros/
owned_string.rs

1//
2
3/// Converts the value into a [String] by calling the `std::fmt::Display::to_string` on the value.
4#[macro_export]
5macro_rules! s {
6    ($value:expr) => {
7        $value.to_string()
8    };
9}