mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +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");
}
```