ImplDownloadItemCallback

Trait ImplDownloadItemCallback 

Source
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§

Source

fn cancel(&self)

See _cef_download_item_callback_t::cancel for more documentation.

Source

fn pause(&self)

See _cef_download_item_callback_t::pause for more documentation.

Source

fn resume(&self)

See _cef_download_item_callback_t::resume for more documentation.

Source

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.

Implementors§