pub trait ViewportExt: 'static {
    fn get_bin_window(&self) -> Option<Window>;
    fn get_shadow_type(&self) -> ShadowType;
    fn get_view_window(&self) -> Option<Window>;
    fn set_shadow_type(&self, type_: ShadowType);
    fn connect_property_shadow_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors