into

Function into 

Source
pub fn into<F: Into<T>, T>(f: F) -> T
Expand description

Converts a value of type F into type T.

#[derive(Valust)]
struct Stringify {
    #[trans(func(&'static str => into))]
    num: String,
}