Trait libhelium::subclass::prelude::EntryBufferImpl

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§

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)

Object Safety§

This trait is not object safe.

Implementors§