书栈网 · BookStack 本次搜索耗时 0.015 秒,为您找到 603 个相关结果.
  • extern crate

    extern crate extern crate 要把上一节创建的库链接到一个 crate,必须使用 extern crate 声明。这不仅会 链接库,还会用一个与库名相同的模块来存放库里面的所有项。于模块的可见性规则也 适用于库。 // 链接到 `rary` 库,导入其中的项 extern crate rary ; fn m...
  • 4.1. Setup

    Setup The Rust Toolchain wasm-pack cargo-generate npm Setup This section describes how to set up the toolchain for compiling Rust programsto WebAssembly and integrate them ...
  • 版本管理工具: rustup

    5576 2018-02-06 《RustPrimer 中文版》
    Rust 版本管理工具: rustup Features 安装 Windows Linux & macOS 卸载 用法 帮助 常用命令 Rust 版本管理工具: rustup rustup 是rust官方的版本管理工具。应当作为安装 Rust 的首选。 项目主页是: https://github.com/rust-lang-nurs...
  • 2.准备

    准备 安装 Rust 安装 Rust 卸载 疑难解答 Hello, world! 创建项目文件 编写并运行 Rust 程序 分析 Rust 程序 编译和运行是两个步骤 Hello, Cargo! 转换到 Cargo 创建源文件目录并移除旧的可执行文件 创建配置文件 构建并运行 Cargo 项目 发布构建 那个Cargo.lock ...
  • WebAssembly 支持

    WebAssembly support WebAssembly support for emscripten for wasm32-unknown-unknown Rust 已经有了对 WebAssembly 的支持,这意味着你可以在浏览器客户端中运行 Rust 代码。 在 Rust 1.14 中,我们通过 emscripten 获...
  • File hierarchy

    File hierarchy File hierarchy Modules can be mapped to a file/directory hierarchy. Let’s break down thevisibility example in files: $ tree . . |-- my | |-- inacc...
  • 1. Introduction

    1010 2020-01-06 《C2Rust Manual》
    What is C2Rust? What is C2Rust? C2Rust helps you migrate C99-compliant code to Rust. It provides: a C to Rust translator a Rust code refactoring tool tools to cross-check exe...
  • 7.7. snudown

    470 2020-01-06 《C2Rust Manual》
    Snudown Snudown To build snudown with the C2Rust translator and/or cross-checks, initialize the git submodule by running git submodule update —init path/to/repo . Make sure to...
  • 改进错误信息

    改进报错信息 改进报错信息 我们一直致力于改进错误,几乎每个 Rust 版本都没有什么改进,但在 Rust 1.12 中,创建了错误消息系统的重大改进。 例如,这里有一些产生错误的代码: fn main () { let mut x = 5 ; let y = & x ; x...
  • Lint

    Lint Lint C/C++ compilers can issue many useful warnings but the amount of static analysis they can do is usually quite limited. The Rust compiler performs a far more rigorous...