Trait sourceview5::prelude::OrientableExt

source ·
pub trait OrientableExt: IsA<Orientable> + Sealed + 'static {
    // Provided methods
    fn orientation(&self) -> Orientation { ... }
    fn set_orientation(&self, orientation: Orientation) { ... }
    fn connect_orientation_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn orientation(&self) -> Orientation

source

fn set_orientation(&self, orientation: Orientation)

source

fn connect_orientation_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> OrientableExt for O
where O: IsA<Orientable>,