libadwaita::subclass::prelude

Trait EntryBufferImpl

source
pub trait EntryBufferImpl: ObjectImpl + ObjectSubclass
where Self::Type: IsA<EntryBuffer>,
{ // 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§