ImplBeforeDownloadCallback

Trait ImplBeforeDownloadCallback 

Source
pub trait ImplBeforeDownloadCallback:
    Clone
    + Sized
    + Rc {
    // Required methods
    fn cont(&self, download_path: Option<&CefString>, show_dialog: c_int);
    fn get_raw(&self) -> *mut _cef_before_download_callback_t;
}

Required Methods§

Source

fn cont(&self, download_path: Option<&CefString>, show_dialog: c_int)

See _cef_before_download_callback_t::cont for more documentation.

Source

fn get_raw(&self) -> *mut _cef_before_download_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§