mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-18 13:38:45 +00:00
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");
}
```