JavaDebug

Trait JavaDebug 

Source
pub trait JavaDebug: ReferenceType {
    // Required method
    fn fmt(self: &Ref<'_, Self>, f: &mut Formatter<'_>) -> Result;
}
Expand description

A trait similar to Debug. Currently it is implemented by Throwable in generated bindings.

Required Methods§

Source

fn fmt(self: &Ref<'_, Self>, f: &mut Formatter<'_>) -> Result

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.

Implementors§