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)
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.