Trait webkit2gtk::prelude::UserMessageExt
source · [−]pub trait UserMessageExt: 'static {
fn fd_list(&self) -> Option<UnixFDList>;
fn name(&self) -> Option<GString>;
fn parameters(&self) -> Option<Variant>;
fn send_reply(&self, reply: &impl IsA<UserMessage>);
}
Available on crate feature
v2_28
only.Expand description
Required Methods
sourcefn fd_list(&self) -> Option<UnixFDList>
fn fd_list(&self) -> Option<UnixFDList>
sourcefn parameters(&self) -> Option<Variant>
fn parameters(&self) -> Option<Variant>
sourcefn send_reply(&self, reply: &impl IsA<UserMessage>)
fn send_reply(&self, reply: &impl IsA<UserMessage>)
Send a reply to an user message.
If reply
is floating, it’s consumed.
You can only send a reply to a UserMessage
that has been
received.
reply
a UserMessage
to send as reply