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