2019-04-08 07:35:14 -07:00
|
|
|
error[E0277]: the trait bound `std::string::String: std::marker::Copy` is not satisfied
|
2019-05-15 14:46:03 -07:00
|
|
|
--> $DIR/pub-not-copy.rs:5:16
|
2019-04-08 07:35:14 -07:00
|
|
|
|
|
2019-09-05 09:52:14 -07:00
|
|
|
3 | #[wasm_bindgen]
|
|
|
|
| --------------- required by `__wbg_get_a_field::assert_copy`
|
|
|
|
4 | pub struct A {
|
2019-05-15 14:46:03 -07:00
|
|
|
5 | pub field: String,
|
2019-04-08 07:35:14 -07:00
|
|
|
| ^^^^^^ the trait `std::marker::Copy` is not implemented for `std::string::String`
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|
2019-09-20 11:50:39 -07:00
|
|
|
error: could not compile `wasm-bindgen-macro-tests`.
|