书栈网 · BookStack 本次搜索耗时 0.042 秒,为您找到 603 个相关结果.
  • 文件分层

    文件分层 文件分层 模块可以分配到文件/目录的层次结构中。让我们将可见性小节例子 的代码拆开分到多个文件中: $ tree . . |-- my | |-- inaccessible . rs | |-- mod . rs | `-- nested.rs ` -- split . rs ...
  • panic!

    panic! panic! The panic! macro can be used to generate a panic and start unwindingits stack. While unwinding, the runtime will take care of freeing all theresources owned by...
  • 1.1. Installation

    Installation Command Line Notation Installing rustup on Linux or macOS Installing rustup on Windows Updating and Uninstalling Troubleshooting Local Documentation Instal...
  • 打开文件 open

    打开文件 open 打开文件 open open 静态方法能够以只读模式(read-only mode)打开一个文件。 File 拥有资源,即文件描述符(file descriptor),它会在自身被 drop 时关闭文件。 use std :: error :: Error ; use std :: fs :: File ; ...
  • 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...
  • 注释与文档

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

    Rust开发版 卸载 Rust开发版 nightly-rust.md commit eb1c7161dd79b55e022cd0c661f9018d406b3fe4 Rust 提供了三种发行渠道:开发版(每日构建),beta 版和稳定版。不稳定功能只在 Rust 开发版中可用。对于这个进程的更多细节,参见可交付产品的稳定性 。 要安装 R...
  • 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...
  • 4.2. References and Borrowing

    References and Borrowing Mutable References Dangling References The Rules of References References and Borrowing The issue with the tuple code in Listing 4-5 is that we have...