FProxy

Trait FProxy 

Source
pub trait FProxy {
    // Provided method
    unsafe fn free(&mut self) { ... }
}
Expand description

Trait to control proxies from the application.
Everything that is a proxy implements this trait, it is automatically implemented with #[fproxy::proxy].

Provided Methods§

Source

unsafe fn free(&mut self)

Frees allocated memory in the library.

§Safety

The caller must ensure self is dropped after.

Implementors§