1 error[E0508]: cannot move out of type `[NonCopy; 1]`, a non-copy array
4 LL | let _value = array[0];
7 | cannot move out of here
8 | move occurs because `array[_]` has type `NonCopy`, which does not implement the `Copy` trait
10 help: consider borrowing here
12 LL | let _value = &array[0];
15 error: aborting due to previous error
17 For more information about this error, try `rustc --explain E0508`.