Skip to main content

PopupFrameCreationListenerProxyInterface

Trait PopupFrameCreationListenerProxyInterface 

Source
pub trait PopupFrameCreationListenerProxyInterface: Send + Sync {
    type OnPopupFrameCreatedResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn on_popup_frame_created(
        &self,
        frame: ClientEnd<FrameMarker>,
        info: PopupFrameCreationInfo,
    ) -> Self::OnPopupFrameCreatedResponseFut;
}

Required Associated Types§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§