gtk4::subclass::entry_buffer

Trait EntryBufferImplExt

Source
pub trait EntryBufferImplExt: Sealed + ObjectSubclass {
    // Provided methods
    fn parent_delete_text(&self, position: u32, n_chars: Option<u32>) -> u32 { ... }
    fn parent_deleted_text(&self, position: u32, n_chars: Option<u32>) { ... }
    fn parent_length(&self) -> u32 { ... }
    fn parent_text(&self) -> GString { ... }
    fn parent_insert_text(&self, position: u32, text: &str) -> u32 { ... }
    fn parent_inserted_text(&self, position: u32, text: &str) { ... }
}

Provided Methods§

Source

fn parent_delete_text(&self, position: u32, n_chars: Option<u32>) -> u32

Source

fn parent_deleted_text(&self, position: u32, n_chars: Option<u32>)

Source

fn parent_length(&self) -> u32

Source

fn parent_text(&self) -> GString

Source

fn parent_insert_text(&self, position: u32, text: &str) -> u32

Source

fn parent_inserted_text(&self, position: u32, text: &str)

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§