Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Are there traditional style switch statements in Rust?

rust

"Can't find crate for `std`" — compiler error with trivial code

rust

Why do I get the error "the trait `Foo` is not implemented for `&mut T`" even though T implements the trait?

What is the difference between :: and . in Rust?

rust

How do I read a single String from standard input?

string rust stdin

What is the difference between println's format styles?

rust

How to specify the underlying type of an enum in Rust? [duplicate]

enums rust

Why doesn't Vec implement the Iterator trait?

rust

How to read a single character from input as u8?

input rust stdin

How to import macros in Rust?

macros rust glium

What type is the "type ()" in Rust?

rust

Allocate array onto heap with size known at runtime

arrays rust heap-memory

Using the Rust compiler to prevent forgetting to call a method

rust api-design type-safety

How do I unwrap an arbitrary number of nested Option types?

generics rust

How to format a byte into a 2 digit hex string, in Rust [duplicate]

rust string-formatting

How can I create an iterator that repeats multiple values infinitely?

iterator rust

Returning error message to function expecting 'Box<dyn Error>'

error-handling rust

Why are string literals &str instead of String in Rust?

Dereferencing Box<T> gives back value instead of reference

rust

Generic struct over a generic type without type parameter