rhai/codegen/ui_tests/non_clonable.stderr

12 lines
505 B
Plaintext
Raw Normal View History

2020-09-05 19:30:12 +02:00
error[E0277]: the trait bound `NonClonable: Clone` is not satisfied
2021-11-23 09:44:59 +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`
|
note: required by a bound in `rhai::Dynamic::cast`
--> $WORKSPACE/src/types/dynamic.rs
|
| pub fn cast<T: Any + Clone>(self) -> T {
| ^^^^^ required by this bound in `rhai::Dynamic::cast`