书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 1478 个相关结果.
  • 3.8. Python

    Python Compile RustPython AOT Compile Run Grant file system access Python There are already several different language implementations of the Python runtime, and some of th...
  • NOP

    445 2019-06-07 《Discovery》
    NOP NOP If in the previous section you compiled the program in release mode and actually looked at thedisassembly, you probably noticed that the delay function is optimized aw...
  • 变量与可变性

    变量和可变性 变量和常量的区别 隐藏(Shadowing) 变量和可变性 ch03-01-variables-and-mutability.md commit 6aad5008b69078a2fc18e6dd7e00ef395170c749 第二章中提到过,变量默认是 不可变 (immutable)的。这是鼓励你利用 Rust 安全和简单...
  • Getting Started

    Getting Started Installing Rust Install WebAssembly target Install Trunk Other options Next steps Getting Started You will need a couple of tools to compile, build, package...
  • Using wasm-pack

    Using wasm-pack 安装 构建 打包 部署 支持生成的目标代码 Using wasm-pack 这个工具由 Rust / Wasm 工作组开发维护,并且是现在最为活跃的 WebAssembly 应用开发工具。 它支持将代码打包成 npm 模块,并且随附了 Webpack 插件 ,可以轻松的与已有的 JavaScript 应...
  • 测试

    测试 参见: 测试 函数可以通过这些属性 (attribute) 进行测试: #[test] 将一个函数标记为一个单元测试。该函数不能接受参数且返回空。 #[should_panic] 将一个函数标记为 panic 测试。 // 当且仅当测试套件没有运行时,才条件编译 `main` 函数。 #[cfg(not(test))] fn...
  • Debugging

    Debugging Panics Console Logging wasm-logger `` ConsoleService `` Source Maps Latest Info Debugging Panics Please use the console_error_panic crate for nicer stacktra...