pub trait ImplPrintDialogCallback:
Clone
+ Sized
+ Rc {
// Required methods
fn cont(&self, settings: Option<&mut PrintSettings>);
fn cancel(&self);
fn get_raw(&self) -> *mut _cef_print_dialog_callback_t;
}Required Methods§
Sourcefn cont(&self, settings: Option<&mut PrintSettings>)
fn cont(&self, settings: Option<&mut PrintSettings>)
See _cef_print_dialog_callback_t::cont for more documentation.
Sourcefn cancel(&self)
fn cancel(&self)
See _cef_print_dialog_callback_t::cancel for more documentation.
fn get_raw(&self) -> *mut _cef_print_dialog_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.