Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How can I deserialize JSON with a top-level array using Serde?

Working with c_void in an FFI

ffi rust

Why do underscore prefixed variables exist?

Precise memory layout control in Rust?

rust memory-layout

Is the question mark operator ? equivalent to the try! macro?

rust operators

What is an auto trait in Rust?

rust

Idiomatic way of assigning a value from an if else condition in Rust

rust

How to specify a certain commit in dependencies in Cargo.toml?

github rust rust-cargo

What are some use cases for tuple structs?

rust

Golang-like defer in Rust

go rust

How to provide standard library sources for IntelliJ IDEA's Rust project?

intellij-idea rust homebrew

How to do polymorphic IO from either a File or stdin in Rust?

io polymorphism rust

Can I convert a string to enum without macros in Rust?

string parsing enums macros rust

Struggling with the subtyping relation of lifetimes in Rust

rust lifetime subtyping

How to prefix/suffix identifiers within a macro? [duplicate]

macros rust

How to trace the cause of an error result?

error-handling rust

Why does calling a method on a variable prevent Rust from inferring the type of the variable?

Why is the bound `T: 'a` required in order to store a reference `&'a T`?

rust lifetime

What do the optimization levels `-Os` and `-Oz` do in rustc?

rust llvm-codegen

What is the difference between macros and functions in Rust?

rust