mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 06:43:20 +03:00
8bfc03fde0
impl From<&[T; N]> and From<&mut [T; N]> for Vec<T>
I really wanted to write:
```rust
fn example(a: impl Into<Vec<u8>>) {}
fn main() {
example(b"raw");
}
```