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§
fn on_popup_frame_created( &self, frame: ClientEnd<FrameMarker>, info: PopupFrameCreationInfo, ) -> Self::OnPopupFrameCreatedResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".