pub trait EntryBufferImpl: EntryBufferImplExt + ObjectImpl {
    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§

Implementors§