书栈网 · BookStack 本次搜索耗时 0.032 秒,为您找到 4929 个相关结果.
  • Rust Client

    Basic data types Add dependencies Raw key-value API Transactional key-value API TiKV Rust Client is still in the proof-of-concept stage and under development. You can track th...
  • Rust 2018

    Rust 2018 Rust 2018 该版本系统是为 Rust 2018 的发布而创建的. Rust 2018 的主题是生产力。 Rust 2018 通过新功能,在某些情况下更简单的语法,更智能的借用检查器以及许多其他东西来改进 Rust 2015。 这些都是为了提高生产力目标。 Rust 2015 是一个基础; Rust 2018 使粗糙边缘平...
  • Rust Client

    Basic Types Add the dependency Connect a client Raw key-value API Transactional key-value API Beyond the Basics We are currently refactoring our documentation. Please excus...
  • Rust安装

    1316 2018-04-27 《Rust学习笔记》
    安装 安装 官方地址: https://www.rust-lang.org/en-US/install.html 根据不同的操作系统安装方式不同。
  • Rust Addons

    2628 2018-03-19 《Node.js 调试指南》
    3.5.1 环境 3.5.2 Rust 3.5.3 FFI 3.5.4 Neon 3.5.5 NAPI 3.5.6 参考链接 我们知道,Node.js 不适合 CPU 密集型计算的场景,通常的解决方法是用 C/C++ 编写 Node.js 的扩展(Addons)。以前只能用 C/C++,现在我们有了新的选择——Rust。 3....
  • Rust SDK

    Contributing to the Rust SDK Examples Docs Update Protobufs Contributing to the Rust SDK Guidelines for contributing to the Dapr Rust SDK When contributing to the Rust SDK ...
  • Rust client

    Rust client Setup Connecting to OpenSearch Creating an index Indexing a document Performing bulk operations Searching for documents Deleting a document Deleting an index Sa...
  • Rust client

    Rust client Setup Connecting to OpenSearch Connecting to Amazon OpenSearch Service Connecting to Amazon OpenSearch Serverless Creating an index Indexing a document Performing...
  • repr(Rust)

    810 2019-06-07 《The Rustonomicon》
    repr(Rust) repr(Rust) First and foremost, all types have an alignment specified in bytes. Thealignment of a type specifies what addresses are valid to store the value at. Avalu...
  • repr(Rust)

    repr(Rust) 原文链接:https://doc.rust-lang.org/nomicon/repr-rust.html repr(Rust) 首先,每种类型都有一个数据对齐属性(alignment)。一种类型的对齐属性决定了哪些内存地址可以合法地存储该类型的值。如果对齐属性是n,那么它的值的存储地址必须是n的倍数。所以,对齐属性2表示值...