Trait TextMarkExt

Source
pub trait TextMarkExt:
    IsA<TextMark>
    + Sealed
    + 'static {
    // Provided methods
    fn buffer(&self) -> Option<TextBuffer> { ... }
    fn is_deleted(&self) -> bool { ... }
    fn is_left_gravity(&self) -> bool { ... }
    fn name(&self) -> Option<GString> { ... }
    fn is_visible(&self) -> bool { ... }
    fn set_visible(&self, setting: bool) { ... }
}

Provided Methods§

Source

fn buffer(&self) -> Option<TextBuffer>

Source

fn is_deleted(&self) -> bool

Source

fn is_left_gravity(&self) -> bool

Source

fn name(&self) -> Option<GString>

Source

fn is_visible(&self) -> bool

Source

fn set_visible(&self, setting: bool)

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§