macro_rules! try_vec { ( $( $elem:expr ),* ) => { ... }; ( $elem:expr; $len:expr ) => { ... }; }
Same as the std::vec! macro but returns an error on allocation failure.
std::vec!