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

    Introduction wasm-bindgen #[wasm_bindgen] macro Simulating inheritance JsValue JsCast Closure js-sys wasm-bindgen-futures spawn_local Introduction wasm-bindgen is a l...
  • 4.36.不安全代码

    不安全代码 “安全”指什么?(What does ‘safe’ mean?) 不安全的超级力量(Unsafe Superpowers) 访问和更新一个static mut 解引用一个裸指针 调用不安全函数 不安全代码 unsafe.md commit 98b18fabddaa942c6bbbb44509b7c00f4b07915f ...
  • 函数返回值

    1568 2018-02-06 《RustPrimer 中文版》
    函数返回值 return关键字 返回多个值 发散函数 函数返回值 在rust中,任何函数都有返回类型,当函数返回时,会返回一个该类型的值。我们先来看看main函数: fn main () { //statements } 之前有说过,函数的返回值类型是在参数列表后,加上箭头和类型来指定的。不...
  • 高阶函数

    1455 2018-02-06 《RustPrimer 中文版》
    高阶函数 函数类型 函数作为参数 函数作为返回值 高阶函数 高阶函数与普通函数的不同在于,它可以使用一个或多个函数作为参数,可以将函数作为返回值。rust的函数是first class type,所以支持高阶函数。而,由于rust是一个强类型的语言,如果要将函数作为参数或返回值,首先需要搞明白函数的类型。下面先说函数的类型,再说函数作为参数...
  • Background

    921 2019-06-07 《Discovery》
    Background What’s a microcontroller? What can you do with a microcontroller? When should I use a microcontroller? When should I not use a microcontroller? Why use Rust and not ...
  • Debugging

    Debugging Panics Console Logging wasm-logger ConsoleService Source Maps Latest Info Debugging Panics Please use the console_error_panic crate for nicer stacktrace...
  • Constructors

    464 2019-06-07 《The Rustonomicon》
    Constructors Constructors There is exactly one way to create an instance of a user-defined type: name it,and initialize all its fields at once: struct Foo { a : u8 ...
  • 2.2. Feature highlights

    Features Features One of the fastest WebAssembly VMs on the market (based on LLVM AOT ) WasmEdge feature extensions Network sockets (Rust and JavaScript SDKs) Async pollin...
  • Introduction

    Introduction Introduction Welcome to the Rust Edition Guide! "Editions" are Rust's way of communicatinglarge changes in the way that it feels to write Rust code. In this guide...