书栈网 · BookStack 本次搜索耗时 0.017 秒,为您找到 591 个相关结果.
  • 21.4. D - Useful Development Tools

    Appendix D - Useful Development Tools Automatic Formatting with rustfmt Fix Your Code with rustfix More Lints with Clippy IDE Integration Using rust-analyzer Appendix ...
  • The Rust Code of Conduct

    The Rust Code of Conduct Conduct Moderation The Rust Code of Conduct Conduct Contact : rust-mods@rust-lang.org We are committed to providing a friendly, safe and welcomi...
  • 3.3. Functions

    Functions Parameters Statements and Expressions Functions with Return Values Functions Functions are prevalent in Rust code. You’ve already seen one of the most important fu...
  • 21.4. D - Useful Development Tools

    Appendix D - Useful Development Tools Automatic Formatting with rustfmt Fix Your Code with rustfix More Lints with Clippy IDE Integration Using the Rust Language Server ...
  • sublime

    2040 2018-02-06 《RustPrimer 中文版》
    Sublime 安装 Sublime Text3安装 rust的安装 下载Rust并编译代码提示插件racer 配置 Sublime Text3相关插件安装 安装Package Control rust相关插件 快速编译 Sublime Sublime Text是一款非常有名的文本编辑器,其本身也具备强大的插件机制。通过配置各种插件...
  • 使用指南

    3103 2018-04-27 《Rust学习笔记》
    使用指南 项目布局 cargo.lock git依赖的版本维护策略 测试 构建缓存 使用指南 Cargo是一个Rust工具,可以在项目中声明各种依赖,并确保可以重复构建。 注: 类比Java中的maven或者gradle? 为此,cargo做了四个事情: 引入两个metadata文件,带有各种项目信息 获取并构建项目的依赖 用正确的...
  • 4.4.3. package

    cargo package NAME SYNOPSIS DESCRIPTION OPTIONS Package Options Compilation Options Feature Selection Manifest Options Miscellaneous Options Display Options Common Options...
  • The Rust Code of Conduct

    The Rust Code of Conduct Conduct Moderation The Rust Code of Conduct Conduct Contact : @rust -lang.org"">rust-mods@rust-lang.org We are committed to providing a friendly,...
  • 包和 crate

    包和 crate 包和 crate ch07-01-packages-and-crates.md commit 879fef2345bf32751a83a9e779e0cb84e79b6d3d 模块系统的第一部分,我们将介绍包和 crate。crate 是一个二进制项或者库。crate root 是一个源文件,Rust 编译器以它为起始点...
  • 移除 runtime 依赖

    移除 runtime 依赖 移除 runtime 依赖 代码 对于大多数语言,他们都使用了 运行时系统(runtime system) ,这导致 main 并不是他们执行的第一个函数。 以 Rust 语言为例:一个典型的链接了标准库的 Rust 程序会首先跳转到 C runtime library 中的 crt0(C runtime zer...