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

    852 2020-01-06 《GraalVM Document》
    Running LLVM on GraalVM Compiling to LLVM Bitcode External library dependencies Running C++ Running Rust Interoperability Polyglot C API Embedding in Java Source-Level Debu...
  • 5. FAQ

    Frequently Asked Questions Is the plan to use GitHub as a package repository? Why build crates.io rather than use GitHub as a registry? Will Cargo work with C code (or other lang...
  • 标准输入输出

    1543 2018-02-06 《RustPrimer 中文版》
    标准输入与输出 标准输入与输出 回顾一下我们写的第一个 Rust 程序就是带副作用的,其副作用就是向标准输出(stdout),通常是终端或屏幕,输出了 Hello, World! 让屏幕上这几个字符的地方点亮起来。println! 宏是最常见的输出,用宏来做输出的还有 print! ,两者都是向标准输出(stdout)输出,两者的区别也一眼就能看出...
  • 实战:使用Postgresql数据库

    2329 2018-02-06 《RustPrimer 中文版》
    rust数据库操作 创建lib.rs文件 rust数据库操作 编程时,我们依赖数据库来存储相应的数据,很多编程语言都支持对数据库的操作,所以当然可以使用Rust操作数据库。 不过在我自己操作时,发现很多问题,主要因为我不了解Rust在操作数据库时,应该注意的事情,从而浪费了很多的时间,在进行数据查询时。具体遇到的坑,我会做一些演示,从而让大家避免...
  • 15.3. Running Code on Cleanup with the Drop Trait

    Running Code on Cleanup with the Drop Trait Dropping a Value Early with std::mem::drop Running Code on Cleanup with the Drop Trait The second trait important to the smart...
  • 4.34.宏

    宏 定义一个宏 匹配 展开 重复(Repetition) 卫生(Hygiene) 递归宏 调试宏代码 句法要求 范围和宏导入/导出 $crate 变量 深入(The deep end) 常用宏(Common macros) panic! vec! assert! 和assert_eq! try! unreachable!...
  • 7.3. 引用模块项目的路径

    引用模块项目的路径 使用 pub 关键字暴露路径 使用 super 起始的相对路径 创建公有的结构体和枚举 引用模块项目的路径 ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md > commit 9c0fa2714859738ff73cbbb829592e4c...
  • 20.2. Turning Our Single-Threaded Server into a Multithreaded Server

    Turning Our Single-Threaded Server into a Multithreaded Server Simulating a Slow Request in the Current Server Implementation Improving Throughput with a Thread Pool Spawning a Th...