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