We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42adb11 commit ef635d2Copy full SHA for ef635d2
gio/src/desktop_app_info.rs
@@ -55,9 +55,9 @@ pub trait DesktopAppInfoExtManual: IsA<DesktopAppInfo> {
55
spawn_flags: glib::SpawnFlags,
56
user_setup: Option<Box_<dyn FnOnce() + 'static>>,
57
pid_callback: Option<&mut dyn (FnMut(&DesktopAppInfo, glib::Pid))>,
58
- stdin_fd: &mut T,
59
- stdout_fd: &mut U,
60
- stderr_fd: &mut V,
+ stdin_fd: T,
+ stdout_fd: U,
+ stderr_fd: V,
61
) -> Result<(), Error> {
62
let user_setup_data: Box_<Option<Box_<dyn FnOnce() + 'static>>> = Box_::new(user_setup);
63
unsafe extern "C" fn user_setup_func(user_data: glib::ffi::gpointer) {
0 commit comments