rhai/codegen/ui_tests/non_clonable.stderr

16 lines
583 B
Plaintext
Raw Normal View History

2020-09-05 19:30:12 +02:00
error[E0277]: the trait bound `NonClonable: Clone` is not satisfied
2023-03-15 01:27:02 +01:00
--> ui_tests/non_clonable.rs:11:23
|
11 | pub fn test_fn(input: NonClonable) -> bool {
| ^^^^^^^^^^^ the trait `Clone` is not implemented for `NonClonable`
|
2021-11-23 09:44:59 +01:00
note: required by a bound in `rhai::Dynamic::cast`
2023-03-15 01:27:02 +01:00
--> $WORKSPACE/src/types/dynamic.rs
|
| pub fn cast<T: Any + Clone>(self) -> T {
| ^^^^^ required by this bound in `Dynamic::cast`
2022-04-06 11:48:34 +02:00
help: consider annotating `NonClonable` with `#[derive(Clone)]`
|
3 | #[derive(Clone)]
|