书栈网 · BookStack 本次搜索耗时 0.011 秒,为您找到 4552 个相关结果.
  • Building from source

    473 2021-03-04 《Deno v1.7.2 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...
  • Building from source

    516 2020-10-28 《Deno v1.4.5 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...
  • Building from source

    451 2020-10-28 《Deno v1.4.6 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...
  • Building from source

    444 2020-12-14 《Deno v1.6.0 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...
  • Ownership

    583 2019-06-07 《The Rustonomicon》
    Ownership and Lifetimes Ownership and Lifetimes Ownership is the breakout feature of Rust. It allows Rust to be completelymemory-safe and efficient, while avoiding garbage coll...
  • MSVC toolchain 支持

    MSVC toolchain 支持 MSVC toolchain 支持 在 Rust 1.0 的发布中,我们只支持 Windows 上的 GNU 工具链。 随着 Rust 1.2 的发布,我们引入了对 MSVC 工具链的初始支持。 之后,随着支持的成熟,我们最终将其作为 Windows 用户的默认选择。 与 C 交互的两个问题之间的区别。如果您...
  • Choosing a web library

    Choosing a web library Introduction Example Usage Choosing One Choosing a web library Introduction Yew apps can be built with either web-sys or stdweb . These two crate...
  • Riker

    2841 2019-06-25 《Riker - Rust框架》
    Riker 基于Actor的并发 自我修复 事件源和CQRS 通用 模块化 现代Rust设计 Riker Riker : 用于构建现代,并发和弹性应用程序的Rust框架. 基于Actor的并发 Actors暴露了基于消息的API,导致快速,无阻塞的代码执行,同时还消除了竞争条件,使并发代码变得轻而易举。 自我修复 构建隔离并从...
  • Other reprs

    715 2019-06-07 《The Rustonomicon》
    Alternative representations repr(C) repr(transparent) repr(u), repr(i) repr(packed) repr(align(n)) Alternative representations Rust allows you to specify alternative data ...
  • 27.3. Documentation Tests

    Documentation Tests Documentation Tests Rust has built-in support for documentation tests: #![allow(unused)] fn main () { /// Shortens a string to the given length. //...