ImplFileDialogCallback

Trait ImplFileDialogCallback 

Source
pub trait ImplFileDialogCallback:
    Clone
    + Sized
    + Rc {
    // Required methods
    fn cont(&self, file_paths: Option<&mut CefStringList>);
    fn cancel(&self);
    fn get_raw(&self) -> *mut _cef_file_dialog_callback_t;
}

Required Methods§

Source

fn cont(&self, file_paths: Option<&mut CefStringList>)

See _cef_file_dialog_callback_t::cont for more documentation.

Source

fn cancel(&self)

See _cef_file_dialog_callback_t::cancel for more documentation.

Source

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

Implementors§