You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var wnd = new Window({
url :"file://D:\\develop\\rust\\child.htm",
state : Window.WINDOW_HIDDEN,
isTopmost: true,
frameType : "solid",
})
Window.this.xcall("process_window",wnd);
wnd.state=Window.WINDOW_SHOWN;
when run, there is error:
the trait bound `*mut _WINDOW: FromValue` is not satisfied
the trait `FromValue` is not implemented for `*mut _WINDOW`
How could I pass the child window, wnd ,or it's handle to rust ?
I wan't to some properties of new window. Or alternatively , could I create the separate child window from rust code ?
The text was updated successfully, but these errors were encountered:
in main.rs,
in main.htm
when run, there is error:
How could I pass the child window, wnd ,or it's handle to rust ?
I wan't to some properties of new window. Or alternatively , could I create the separate child window from rust code ?
The text was updated successfully, but these errors were encountered: