Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Why does Valgrind not detect a memory leak in a Rust program using nightly 1.29.0?

rust valgrind

How can I reduce (fold) an iterator and keep intermediate results (such as a cumulative sum)?

rust iterator

Couldn't start client Rust Language Server

What exactly is a Rust "toolchain"?

rust toolchain rustup

Why can't None be cloned for a generic Option<T> when T doesn't implement Clone?

generics rust clone

What does `impl ... for` mean?

rust

Can I determine the zero value of generic types?

rust

How to check if function pointer passed from C is non-NULL

c rust ffi

How do I free a *char allocated via FFI in Rust?

rust ffi

Return value from match to Err(e)

rust

Default generic parameter

rust traits

How do I get a substring between two patterns in Rust?

string rust

How do I iterate over elements of a struct in Rust?

rust

Why do Rust's operators have the type Output variable? [duplicate]

Why can't I mutably borrow a primitive from an enum?

enums rust borrow-checker

Why can I use Ok and Err directly without the Result:: prefix?

enums rust

Why does the compiler not complain that an iterator moved to a for loop is immutable?

rust move-semantics

How do I multiply an integer and a floating value together and display the result as a floating value in Rust? [duplicate]

rust

Why does a &str not coerce to a &String when using Vec::contains?

string rust

Is there a way to use existing structs as enum variants?

rust