1error[E0596]: cannot borrow data in a dereference of `UniquePtr<ffi::Opaque>` as mutable
2  --> $DIR/unique_ptr_as_mut.rs:22:31
3   |
422 |     let _: &mut ffi::Opaque = &mut opaque;
5   |                               ^^^^^^^^^^^ cannot borrow as mutable
6   |
7   = help: trait `DerefMut` is required to modify through a dereference, but it is not implemented for `UniquePtr<ffi::Opaque>`
8