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

    159 2023-12-03 《Rocket v0.3 Guide》
    Testing Local Dispatching Validating Responses Testing “Hello, world!” Setting Up Testing Codegen Debug Testing Every application should be well tested and understandable....
  • E - 版本

    附录 E:版本 附录 E:版本 appendix-05-editions.md commit 70a82519e48b8a61f98cabb8ff443d1b21962fea 早在第一章,我们见过 cargo new 在 Cargo.toml 中增加了一些有关 edition 的元数据。本附录将解释其意义! Rust 语言和编译器有...
  • 8.4. Building the manual

    607 2020-01-06 《C2Rust Manual》
    Building the manual Adding to the manual Generated docs Building the manual cargo install —git https://github.com/immunant/mdBook.git —branch installable (May require —for...
  • 2. Why Rust and WebAssembly?

    1143 2020-02-11 《Rust and WebAssembly》
    Why Rust and WebAssembly? Low-Level Control with High-Level Ergonomics Small .wasm Sizes Do Not Rewrite Everything Plays Well With Others The Amenities You Expect Why Rust...
  • 采用测试驱动开发完善库的功能

    采用测试驱动开发完善库的功能 编写失败测试 编写使测试通过的代码 使用 lines 方法遍历每一行 用查询字符串搜索每一行 存储匹配的行 在 run 函数中使用 search 函数 采用测试驱动开发完善库的功能 ch12-04-testing-the-librarys-functionality.md commit 1fe78a8...
  • 1.5. Output for humans and machines

    Output Printing “Hello World” Using println Printing errors A note on printing performance Showing a progress bar Logging Output Printing “Hello World” #![allow(unus...
  • Introduction

    Project Setup Overview Installing Rust Install WebAssembly target Install Trunk Summary Project Setup Overview Your local development environment will need a couple of too...
  • 注释与文档

    1436 2018-02-06 《RustPrimer 中文版》
    注释与文档 注释 文档 生成 html 文档 注释与文档 注释 在 Rust 里面注释分成两种,行注释和块注释。它的形式和 C 语言是一样的。两种注释分别是: 行注释使用 // 放在注释前面。比如: // I love Rust, but I hate Rustc. 块注释分别使用/* 和*/ 包裹需要注释的内容。比...