Trait OrientableExt

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

Required Methods§

Source

fn get_orientation(&self) -> Orientation

Source

fn set_orientation(&self, orientation: Orientation)

Source

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

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§