Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Why does Rust compile a simple program 5-10 times slower than gcc/clang?

rust

Array as a struct field

rust

Decimal number to hexadecimal string

rust

How to read an integer input from the user in Rust 1.0?

input integer rust user-input

Can Rust optimise away the bit-wise copy during move of an object someday?

How would I create and use a string to string Hashmap in Rust?

rust

How can I use a dynamic format string with the format! macro?

string format rust literals

What does the '@' symbol do in Rust?

rust

What is Vec<_>?

generics rust

Result has no method called "unwrap()"?

rust

Is it possible to declare variables procedurally using Rust macros?

macros rust

Why does Drop take &mut self instead of self?

rust

Cannot borrow as immutable because it is also borrowed as mutable in function arguments

rust borrow-checker

What types are valid for the `self` parameter of a method?

methods syntax rust

How do I read the output of a child process without blocking in Rust?

process io rust blocking pty

Type issue with Iterator collect

iterator rust

Is there a way to create a function pointer to a method in Rust?

rust

How to expose a Rust `Vec<T>` to FFI?

rust ffi

How can I match on a specific io::Error type?

error-handling rust

Why is a trait not implemented for a type that clearly has it implemented?

rust serde