File: rhai_fn_rename_collision_oneattr_multiple.rs

package info (click to toggle)
rust-rhai-codegen 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 888 kB
  • sloc: makefile: 2
file content (30 lines) | stat: -rw-r--r-- 554 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use rhai::plugin::*;

#[derive(Clone)]
pub struct Point {
    x: f32,
    y: f32,
}

#[export_module]
pub mod test_module {
    pub use super::Point;
    #[rhai_fn(name = "foo", get = "bar")]
    pub fn test_fn(input: Point) -> bool {
        input.x > input.y
    }

    #[rhai_fn(get = "bar")]
    pub fn foo(input: Point) -> bool {
        input.x < input.y
    }
}

fn main() {
    let n = Point { x: 0.0, y: 10.0 };
    if test_module::test_fn(n) {
        println!("yes");
    } else {
        println!("no");
    }
}