pub trait PlugExt: 'static {
    fn construct(&self, socket_id: Window);
    fn construct_for_display(&self, display: &Display, socket_id: Window);
    fn get_embedded(&self) -> bool;
    fn get_id(&self) -> Window;
    fn get_socket_window(&self) -> Option<Window>;
    fn connect_embedded<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_property_embedded_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_property_socket_window_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors