Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How to use multiple variables in Rust's for loop?

rust

unconstrained type parameter error

rust glium

How do I write the lifetimes for references in a type constraint when one of them is a local reference?

generics rust lifetime

Why does iter borrow mutably when used in a pattern guard?

rust

Why do I get "conflicting implementations of trait" for f32 which does not implement Ord?

rust

How can I prevent functions from being aligned to 16 bytes boundary when compiling for X86?

Collect iterators of length 2 into HashMap

rust

How do I translate x86 GCC-style C inline assembly to Rust inline assembly?

assembly rust

Iterating through a recursive structure using mutable references and returning the last valid reference

How do I specify the lifetime of an AsRef?

rust

"Can't assign requested address" when sending to a UdpSocket

sockets rust udp

Can't get image::load_from_memory() to work when compiled to WebAssembly

rust webassembly

Why doesn't the comparison operation in my iterator filter over generic types work?

filter iterator rust

Where does nom's "$i" macro argument come from?

macros rust nom

How to run multiple futures that call thread::sleep in parallel? [duplicate]

rust future

What are the differences between using * and & to compare values for equality?

rust

Why did compiler not error on this mutable borrow when there is an immutable borrowed string slice reference still in scope?

rust ownership borrowing

How do I use nom to parse a string with sign into an i32?

parsing rust nom

Can I use Deref<Target = Other> to inherit trait implementations from Other?

rust traits

How can I implement From for both concrete Error types and Box<Error> in Rust?

rust