pub trait ImplUnresponsiveProcessCallback:
Clone
+ Sized
+ Rc {
// Required methods
fn wait(&self);
fn terminate(&self);
fn get_raw(&self) -> *mut _cef_unresponsive_process_callback_t;
}Required Methods§
Sourcefn wait(&self)
fn wait(&self)
See _cef_unresponsive_process_callback_t::wait for more documentation.
Sourcefn terminate(&self)
fn terminate(&self)
See _cef_unresponsive_process_callback_t::terminate for more documentation.
fn get_raw(&self) -> *mut _cef_unresponsive_process_callback_t
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.