pub trait OrientableExt: 'static {
    // Required methods
    fn orientation(&self) -> Orientation;
    fn set_orientation(&self, orientation: Orientation);
    fn connect_orientation_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn orientation(&self) -> Orientation

source

fn set_orientation(&self, orientation: Orientation)

source

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

Implementors§