pub trait AspectFrameExt: 'static {
Show 13 methods fn set(&self, xalign: f32, yalign: f32, ratio: f32, obey_child: bool); fn get_property_obey_child(&self) -> bool; fn set_property_obey_child(&self, obey_child: bool); fn get_property_ratio(&self) -> f32; fn set_property_ratio(&self, ratio: f32); fn get_property_xalign(&self) -> f32; fn set_property_xalign(&self, xalign: f32); fn get_property_yalign(&self) -> f32; fn set_property_yalign(&self, yalign: f32); fn connect_property_obey_child_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_property_ratio_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_property_xalign_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_property_yalign_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods

Implementors