pub trait JType: JObjRef + JObjNew {
type Error;
const CLASS: &'static str;
const OBJECT_SIG: &'static str;
const DIM: u8 = 0u8;
}
Expand description
用于描述java类的信息。
Required Associated Constants§
Provided Associated Constants§
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.