string_from 0.1.0

A three-letter macro for String::from
Documentation
1
2
3
4
5
6
7
#[macro_export]
macro_rules! Str {
    ($a: expr) => {
        String::from($a)
    };
}