How can I implement Into
trait for arbitrary types, or receive same functionality in whatever way?
For example, I'd like to convert usize
into Vec<u8>
How can I implement Into
trait for arbitrary types, or receive same functionality in whatever way?
For example, I'd like to convert usize
into Vec<u8>