pub trait CellRendererAccelImpl: CellRendererAccelImplExt + CellRendererTextImpl {
// Provided methods
fn accel_edited(
&self,
path: &str,
accel_key: u32,
accel_mods: ModifierType,
hardware_keycode: u32,
) { ... }
fn accel_cleared(&self, path: &str) { ... }
}Provided Methods§
fn accel_edited( &self, path: &str, accel_key: u32, accel_mods: ModifierType, hardware_keycode: u32, )
fn accel_cleared(&self, path: &str)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".