Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How to match Rust's `if` expressions in a macro?

macros rust rust-macros

Zero-cost abstractions: performance of for-loop vs. iterators

performance rust

Why does a fully static Rust ELF binary have a Global Offset Table (GOT) section?

rust elf got

match expression falling through?

pattern-matching rust

Creating web worker from Rust with Emscripten target

rust emscripten

How can I compile a Rust program with a custom llc?

rust llvm

Specify Rust closures lifetime

rust closures lifetime

Integers are formatted incorrectly when cross-compiling to armv5te

rust cross-compiling

Allow unused named arguments in Rust's format!() family

rust

found a virtual manifest at <path> instead of a package manifest

rust rust-cargo

Why does conditional assignment of a matched mutable reference cause borrow errors?

rust borrow-checker

Encapsulating sequentially initialized state with self-references in Rust struct

rust

When should we use a struct as opposed to an enum?

struct enums rust

Why do a Rust function and a FFI C++ function execute in reverse order?

c++ rust

What exactly is a 'crate' in the Cargo ecosystem and what is the mapping to what is on crates.io?

rust rust-cargo rust-crates

Can I randomly sample from a HashSet efficiently?

random rust hashset

Why is an explicit dereference required in (*x).into(), but not in x.my_into()?

How to compare contents an owned vector to a static vector in Rust?

How to use a macro from one crate in another?

macros rust rust-crates

Is it possible to write a Rust macro that will expand into a function/method signature?