Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Is there any reason not to use DoubleEndedIterator for iterators that don't iterate over a range of things?

rust

How to use a file with a BufReader and still be able to write to it?

file rust ownership

Counting length of repetition in macro

macros rust

How do I share a HashMap between Hyper handlers?

rust hyper

How do the channels work in Rust By Example?

How do I detect whether the CPU has good POPCNT support?

performance rust cpu

How do I implement a data oriented design in Rust?

rust data-oriented-design

How do I return an vector of dynamic length in a pub extern "C" fn?

rust ffi

Create *mut *mut to a struct

rust ffi

Anonymous enum in Rust

rust

Is Rust's lexical grammar regular, context-free or context-sensitive?

Why is pointer arithmetic the cause of a segfault?

rust

How do I keep internal state in a WebAssembly module written in Rust?

rust webassembly

Is there a compact and idiomatic way to print an error and return without returning the error?

rust

How do I print both an expression and its value in Rust?

How can I test a future that is bound to a tokio TcpStream?

rust future rust-tokio

What is a function prototype in Rust?

When adding `#![no_std]` to a library, are there any disadvantages or complications for the users of that library?

rust

Why can a &str not be passed to a function accepting a &dyn Display trait object?

rust trait-objects

Is it possible for the assert_eq macro to show a diff when two strings aren't equal?