文件名称:stdweb:客户端Web的标准库
文件大小:351KB
文件格式:ZIP
更新时间:2024-02-23 14:28:29
javascript rust gui web webassembly
客户端Web的标准库 此板条箱的目的是为Web API提供Rust绑定,并允许Rust和JavaScript之间实现高度的互操作性。 捐 赞助人 这些出色的人员为您带来了该软件: 登机工作室 乔·纳尔维兹 爱德华·克尼索夫(Eduard Knyshov) 安瑟姆·埃克霍夫(Anselm Eickhoff) 约翰·安德森(Johan Andersson) 斯蒂芬·苏格登 is8ac 谢谢! 例子 您可以直接将JavaScript代码嵌入Rust: let message = "Hello, 世界!" ; let result = js! { alert ( @{message} ); return 2 + 2 * 2 ; }; println! ( "2 + 2 * 2 = {:?}" , result ); 还支持闭包: let print_hello = | name: String | { println! ( "Hello, {}!" , name ); }; js! { var print_hello = @{print_hel