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

    Wait Wait If you’d like to wait for a process::Child to finish, you must callChild::wait , which will return a process::ExitStatus . use std :: process :: Command ; fn m...
  • 等待 Wait

    等待 Wait 等待 Wait 如果你想等待 process::Child 完成,就必须调用 Child::wait ,这会返回一个 process::ExitStatus 。 use std :: process :: Command ; fn main () { let mut child = Comman...
  • 3.16.6. cdylib crates for C interoperability

    cdylib crates for C interoperability cdylib crates for C interoperability for rustc for cargo If you're producing a library that you intend to be used from C (or anotherl...
  • 6. Cross Checks

    521 2020-01-06 《C2Rust Manual》
    This is the top-level directory for all cross-checking components, and contains the following: A clang plugin that automatically inserts cross-check instrumentation into C code....
  • cargo check 用以快速检查

    cargo check 用于快速检查 cargo check 用于快速检查 cargo check 是一个新的子命令,可以在很多情况下加快开发工作流程。 它有什么作用?让我们退一步说,讨论 rustc 如何编译代码。编译有许多“过程”,也就是说,编译器在从源代码到生成最终二进制文件的过程中有许多不同的步骤。 但是,您可以通过两个重要步骤...
  • 安装

    安装 在 Linux 或 Mac 上安装 在 Windows 上安装 自定义安装 更新 卸载 故障排除(Troubleshooting) 本地文档 安装 ch01-01-installation.md commit b6dcc87f2b811c88fc741c86cf6ed3976333acba 使用 Rust 的第一步是安装。...
  • 10.1. Optimizations: The speed size tradeoff

    Optimizations: the speed size tradeoff No optimizations Optimizing dependencies Optimize for speed Optimize for size Optimizations: the speed size tradeoff Everyone wants t...
  • cdylib 与 C 的互通性

    cdylib 与 C 交互 cdylib 与 C 交互 for rustc for cargo 如果你正在生成一个打算从 C(或其他语言通过 C FFI)使用的库,则 Rust 不需要在最终目标代码中包含特定于 Rust 的内容。 对于像这样的库,你需要在你的 Cargo.toml 中使用 cdylib crate 类型: [ li...
  • Rust旅程

    2714 2018-02-06 《RustPrimer 中文版》
    Rust旅程 HelloWorld HelloRust Rust旅程 HelloWorld 按照编程语言的传统,学习第一门编程语言的第一个程序都是打印 Hello World!下面根据我们的步骤创建 Rust 的 Hello World!程序: 下面的命令操作,如果没有特别说明,都是在shell下运行。本文为了简单统一,所有例子都在 win...
  • Library

    Library Library Let’s create a library, and then see how to link it to another crate. pub fn public_function () { println !( "called rary's `public_function()`" ); }...