书栈网 · BookStack 本次搜索耗时 0.013 秒,为您找到 4552 个相关结果.
  • 3.1.2. Access OS services

    Access OS services Random numbers Printing and debugging from Rust Arguments and environment variables Reading and writing files A main() app Functions Access OS services ...
  • 宏的变化

    宏的变化 程序宏 更多细节: 宏的变化 在 Rust 2018 中,您可以通过 use 语句从外部包中导入特定的宏,而不是旧的 #[macro_use] 属性。 举个例子,考虑 bar 包中实现了一个 !bar 宏,在 src/lib.rs 中: #[ macro_export ] macro_rules ! baz {...
  • 3. Common Programming Concepts

    Common Programming Concepts Keywords Common Programming Concepts ]($6c536e6614492edd.md#common-programming-concepts) This chapter covers concepts that appear in almost every ...
  • 新版”the book”

    新版本的 “the book” 新版本的 “the book” 第二版的草稿 第二版的最后一版 2018版的草稿 我们分发了一份 “Rust编程语言”,亲切地昵称为 “书”,以及 Rust 自 Rust 1.0 以来的每个版本。 但是,因为它是在 Rust 1.0 之前编写的,所以它开始显示它的年龄。本书的许多部分都含糊不清,因为它是在...
  • Unwinding

    868 2019-06-07 《The Rustonomicon》
    Unwinding Unwinding Rust has a tiered error-handling scheme: If something might reasonably be absent, Option is used. If something goes wrong and can reasonably be handled, R...
  • 3.1.3. Tensorflow

    Tensorflow Table of contents A Rust example Prerequisite Build Run Make it run faster Code walkthrough Deployment options Serverless functions Second Sate FaaS and Node.js ...
  • 3.7.3. '_, the anonymous lifetime

    '_, the anonymous lifetime More details '_, the anonymous lifetime Rust 2018 allows you to explicitly mark where a lifetime is elided, for typeswhere this elision might othe...
  • README

    Rust 程序设计语言(第二版) 简体中文版 状态 社区资源 GitBook Rust 程序设计语言(第二版) 简体中文版 状态 还在施工中。大部分章节已经可以阅读。具体状态请参见官方 projects ,Frozen 之后的内容应该较为稳定。 每章翻译开头都带有官方链接和 commit hash,若发现与官方不一致,欢迎 Iss...
  • 闭包的实现

    1355 2018-02-06 《RustPrimer 中文版》
    闭包的实现 这部分引用自 The Rust Programming Language中文版 闭包的实现 Rust 的闭包实现与其它语言有些许不同。它们实际上是trait的语法糖。在这以前你会希望阅读trait章节 ,和trait对象 。 都理解吗?很好。 理解闭包底层是如何工作的关键有点奇怪:使用() 调用函数,像foo() ,是一个可重载的...