书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 4552 个相关结果.
  • 注释

    1468 2018-02-06 《RustPrimer 中文版》
    注释 行注释 文档注释 模块注释 其它:兼容C语言的注释 注释 Rust 代码文件中,通常我们可以看到 3 种注释。 行注释 文档注释 模块注释 行注释 // 后的,直到行尾,都属于注释,不会影响程序的行为。 // 创建一个绑定 let x = 5 ; let y = 6 ; // 创建另一个绑...
  • 19.5. Macros

    Macros The Difference Between Macros and Functions Declarative Macros with macro_rules! for General Metaprogramming Procedural Macros for Generating Code from Attributes How ...
  • 全局分配符

    全局分配符 全局分配符 分配器是 Rust 中的程序在运行时从系统获取内存的方式。以前,Rust 不允许改变获取内存的方式,这阻止了一些用例。 在某些平台上,这意味着在其他平台上使用 jemalloc,系统分配器,但用户无法控制此关键组件。 在1.28中,#[global_allocator] 属性现在是稳定的,它允许 Rust 程序将它们的...
  • 数据布局

    Rust中的数据表示 原文链接:https://doc.rust-lang.org/nomicon/data.html Rust中的数据表示 底层编程经常需要关注数据布局。它非常重要,而且会影响这门语言的方方面面。所以我们将从Rust中数据的表示方式开始讨论。
  • 附录

    附录 附录 appendix-00.md commit 4f2dc564851dc04b271a2260c834643dfd86c724 附录部分包含一些在你的Rust之旅中可能用到的参考资料。 A - 关键字 B - 运算符与符号 C - 可导出的 trait D - 宏 E - 本书翻译 F - 最新功能 G - Rust...
  • Drop Trait 运行清理代码

    Drop Trait 运行清理代码 通过 std::mem::drop 提早丢弃值 Drop Trait 运行清理代码 ch15-03-drop.md commit 721553e3a7b5ee9430cb548c8699b67be197b3f6 对于智能指针模式来说另一个重要的 trait 是 Drop 。Drop 允许我们在值要...
  • 3.7.4. Lifetime elision in impl

    Lifetime elision in impl Lifetime elision in impl When writing impl blocks, you can now elide lifetime annotations in somesituations. Consider a trait like MyIterator : tr...
  • 4.2.4. Tensorflow

    Tensorflow Rust function compiled into WebAssembly Go host app Build and run Tensorflow In this section, we will show you how to create a Tensorflow inference function in Ru...
  • Building from source

    445 2021-03-04 《Deno v1.7.3 Manual》
    Building from source Cloning the Repository Prerequisites Setup rust targets and components Building Deno Building Building from source Below are instructions on how to bu...