pub trait MessageDialogImpl: WindowImpl {
    // Provided method
    fn response(&self, response: &str) { ... }
}
Available on crate feature v1_2 only.

Provided Methods§

source

fn response(&self, response: &str)

Emits the response signal with the given response ID.

Used to indicate that the user has responded to the dialog in some way.

§response

response ID

Object Safety§

This trait is not object safe.

Implementors§