pub enum PopupFrameCreationListenerRequest {
OnPopupFrameCreated {
frame: ClientEnd<FrameMarker>,
info: PopupFrameCreationInfo,
responder: PopupFrameCreationListenerOnPopupFrameCreatedResponder,
},
}
Variants§
OnPopupFrameCreated
Called when a [Frame
] has created a new popup frame
. Information about the popup frame,
and how it was created, is provided via info
. Additional popup frames are delivered after
the acknowledgement callback is invoked.
Implementations§
Source§impl PopupFrameCreationListenerRequest
impl PopupFrameCreationListenerRequest
pub fn into_on_popup_frame_created( self, ) -> Option<(ClientEnd<FrameMarker>, PopupFrameCreationInfo, PopupFrameCreationListenerOnPopupFrameCreatedResponder)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PopupFrameCreationListenerRequest
impl !RefUnwindSafe for PopupFrameCreationListenerRequest
impl Send for PopupFrameCreationListenerRequest
impl Sync for PopupFrameCreationListenerRequest
impl Unpin for PopupFrameCreationListenerRequest
impl !UnwindSafe for PopupFrameCreationListenerRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more