pub trait JNIProvidesClassName {
    // Required method
    fn class_name(&self) -> &str;
}
Expand description

Trait for anything that can provide a class name.

Required Methods§

source

fn class_name(&self) -> &str

Implementors§