droid_wrap_derive

Attribute Macro java_method

Source
#[java_method]
Expand description

实现java类的方法,将此属性标记在fn函数上,可以自动实现调用java方法,可以自动识别静态方法(如果参数中没有“self”)。

§Arguments

  • attrs: 属性输入。
  • input: 函数输入。

returns: TokenStream

§Examples

use droid_wrap_derive::java_method;
struct System;
impl System {
#[java_method]
fn current_time_millis() -> i64 {}
}