pub fn try_into<F: TryInto<T>, T>(f: F) -> Result<T, F::Error>
Tries to convert a value of type F into type T.
F
T
#[derive(Valust)] struct Stringify { #[trans(func(i32 => try(try_into)))] num: i8, }