书栈网 · BookStack 本次搜索耗时 0.021 秒,为您找到 4390 个相关结果.
  • 5.6.并发

    并发 背景:Send 和Sync Send Sync 线程 安全共享的可变状态(Safe Shared Mutable State) 通道(Channels) 恐慌(Panics) 并发 concurrency.md commit 23a7a7bdb6a6a43cd7efdd9176b1d3f75d9d0e70 并发与并行...
  • 2.5. test

    468 2020-06-20 《mdBook Document》
    The test command Disable tests on a code block Specify a directory --library-path --dest-dir The test command When writing a book, you sometimes need to automate some tests...
  • 6.3.1. Dangling References

    Dangling References Dangling References Rust will statically forbid dangling references: fn main () { let ref_x : & i32 ; { let x : i32 = 10...
  • 使用目标三元组描述目标平台

    使用目标三元组描述目标平台 目标三元组 JSON 描述文件 使用目标三元组描述目标平台 代码 cargo 在编译项目时,可以附加目标参数 --target <target triple> 设置项目的目标平台。平台包括硬件和软件支持,事实上,目标三元组(target triple) 包含:cpu 架构、供应商、操作系统和 ABI 。 安...
  • The Rustonomicon

    The Rustonomicon The Rustonomicon 我们现在有了一个草稿书, The Rustonomicon: the Dark Arts of Advanced and Unsafe Rust Programming . 从标题来看,我相信你可以猜到:这本书讨论了一些高级主题,包括“不安全”。 对于那些在 Rust 最低级别...
  • Indexes

    Indexes List all indexes Example Response: 200 Ok Get one index Path variables Example Response: 200 Ok Create an index Body Example Response: 201 created Update an ...
  • ? 在 main 和 tests中

    ? 在 main 和 tests 中 更多的细节 ? 在 main 和 tests 中 Rust的错误处理围绕返回 Result <T,E> 并使用 ? 传播错误。 对于那些编写许多小程序并且希望进行许多测试的人来说,更关注于那些复杂的入口,例如main 和#[test] 中的错误处理。 举个例子,你将尝试这样写: use s...
  • Building from source

    Building from source Step 1: Install pre-requisites Step 2: Clone the tag Bonus tip Step 3: Build it! note Step 4: Get the binaries Step 5: Run it! Building from source O...
  • 标准库介绍

    1776 2018-02-06 《RustPrimer 中文版》
    标准库示例 标准库示例 好了,本书到这里也接近完结了。相信你一在学习了这么多内容的之后,一定跃跃欲试了吧?下面,我们将以代码为主,讲解几个利用std 库,即标准库来做的例子。希望大家能从中学到一点写法,并开始自己的Rust之旅。 注: 由于笔者的电脑是openSUSE Linux的,所以本章所有代码均只在 openSUSE Leap 42.1 &...
  • 7. Examples

    446 2020-01-06 《C2Rust Manual》
    Example translations Example translations The following example translations illustrate how to run C2Rust on realcodebases. Each example has been modified if necessary to prepa...