@@ -682,11 +682,6 @@ impl ExecutableExecExecutableType {
682682#[ doc = " \" description\" : \" The URI to launch. This can be a file path or a web URL.\" ," ]
683683#[ doc = " \" default\" : \" \" ," ]
684684#[ doc = " \" type\" : \" string\" " ]
685- #[ doc = " }," ]
686- #[ doc = " \" wait\" : {" ]
687- #[ doc = " \" description\" : \" If set to true, the executable will wait for the launched application to exit before continuing.\" ," ]
688- #[ doc = " \" default\" : false," ]
689- #[ doc = " \" type\" : \" boolean\" " ]
690685#[ doc = " }" ]
691686#[ doc = " }" ]
692687#[ doc = "}" ]
@@ -703,9 +698,6 @@ pub struct ExecutableLaunchExecutableType {
703698 pub params : :: std:: option:: Option < ExecutableParameterList > ,
704699 #[ doc = "The URI to launch. This can be a file path or a web URL." ]
705700 pub uri : :: std:: string:: String ,
706- #[ doc = "If set to true, the executable will wait for the launched application to exit before continuing." ]
707- #[ serde( default ) ]
708- pub wait : bool ,
709701}
710702impl :: std:: convert:: From < & ExecutableLaunchExecutableType > for ExecutableLaunchExecutableType {
711703 fn from ( value : & ExecutableLaunchExecutableType ) -> Self {
@@ -2831,7 +2823,6 @@ pub mod builder {
28312823 :: std:: string:: String ,
28322824 > ,
28332825 uri : :: std:: result:: Result < :: std:: string:: String , :: std:: string:: String > ,
2834- wait : :: std:: result:: Result < bool , :: std:: string:: String > ,
28352826 }
28362827 impl :: std:: default:: Default for ExecutableLaunchExecutableType {
28372828 fn default ( ) -> Self {
@@ -2840,7 +2831,6 @@ pub mod builder {
28402831 args : Ok ( Default :: default ( ) ) ,
28412832 params : Ok ( Default :: default ( ) ) ,
28422833 uri : Err ( "no value supplied for uri" . to_string ( ) ) ,
2843- wait : Ok ( Default :: default ( ) ) ,
28442834 }
28452835 }
28462836 }
@@ -2885,16 +2875,6 @@ pub mod builder {
28852875 . map_err ( |e| format ! ( "error converting supplied value for uri: {}" , e) ) ;
28862876 self
28872877 }
2888- pub fn wait < T > ( mut self , value : T ) -> Self
2889- where
2890- T : :: std:: convert:: TryInto < bool > ,
2891- T :: Error : :: std:: fmt:: Display ,
2892- {
2893- self . wait = value
2894- . try_into ( )
2895- . map_err ( |e| format ! ( "error converting supplied value for wait: {}" , e) ) ;
2896- self
2897- }
28982878 }
28992879 impl :: std:: convert:: TryFrom < ExecutableLaunchExecutableType >
29002880 for super :: ExecutableLaunchExecutableType
@@ -2908,7 +2888,6 @@ pub mod builder {
29082888 args : value. args ?,
29092889 params : value. params ?,
29102890 uri : value. uri ?,
2911- wait : value. wait ?,
29122891 } )
29132892 }
29142893 }
@@ -2921,7 +2900,6 @@ pub mod builder {
29212900 args : Ok ( value. args ) ,
29222901 params : Ok ( value. params ) ,
29232902 uri : Ok ( value. uri ) ,
2924- wait : Ok ( value. wait ) ,
29252903 }
29262904 }
29272905 }
0 commit comments