libadwaita::subclass::prelude

Trait EntryBufferImpl

Source
pub trait EntryBufferImpl: EntryBufferImplExt + ObjectImpl {
    // Provided methods
    fn delete_text(&self, position: u32, n_chars: Option<u32>) -> u32 { ... }
    fn deleted_text(&self, position: u32, n_chars: Option<u32>) { ... }
    fn length(&self) -> u32 { ... }
    fn text(&self) -> GString { ... }
    fn insert_text(&self, position: u32, chars: &str) -> u32 { ... }
    fn inserted_text(&self, position: u32, chars: &str) { ... }
}

Provided Methods§

Source

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

Source

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

Source

fn length(&self) -> u32

Source

fn text(&self) -> GString

Source

fn insert_text(&self, position: u32, chars: &str) -> u32

Source

fn inserted_text(&self, position: u32, chars: &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§