rhai_codegen 3.1.0

Procedural macros support package for Rhai, a scripting language and engine for Rust
Documentation
error[E0277]: the trait bound `NonClonable: Clone` is not satisfied
  --> ui_tests/non_clonable.rs:12:23
   |
12 | pub fn test_fn(input: NonClonable) -> bool {
   |                       ^^^^^^^^^^^
   |                       |
   |                       the trait `Clone` is not implemented for `NonClonable`
   |                       required by a bound introduced by this call
   |
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 `Dynamic::cast`
help: consider annotating `NonClonable` with `#[derive(Clone)]`
   |
4    + #[derive(Clone)]
5    | struct NonClonable {
     |