ImplRunQuickMenuCallback

Trait ImplRunQuickMenuCallback 

Source
pub trait ImplRunQuickMenuCallback:
    Clone
    + Sized
    + Rc {
    // Required methods
    fn cont(&self, command_id: c_int, event_flags: EventFlags);
    fn cancel(&self);
    fn get_raw(&self) -> *mut _cef_run_quick_menu_callback_t;
}

Required Methods§

Source

fn cont(&self, command_id: c_int, event_flags: EventFlags)

See _cef_run_quick_menu_callback_t::cont for more documentation.

Source

fn cancel(&self)

See _cef_run_quick_menu_callback_t::cancel for more documentation.

Source

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