Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How to implement HashMap with two keys?

hashmap rust

Why can I compare a String to a &str using if, but not when using match?

string rust match literals

How can I locate resources for testing with Cargo?

testing rust rust-cargo

How do you declare an interface in Rust?

interface rust

Is there a way to combine multiple traits in order to define a new trait? [duplicate]

rust

What is the best variant for appending a new line in a text file?

file-io rust

Dividing two integers doesn't print as a decimal number in Rust

rust

How do I use a C library in a Rust library compiled to WebAssembly?

javascript c rust webassembly

How to match trait implementors

rust

What is the simplest way to convert a string to upper case in Rust?

string rust rust-0.9

Does Rust's array bounds checking affect performance?

How can I put the current thread to sleep?

rust sleep

How do I pass an array to a function in Rust and change its content?

arrays rust

When is tail recursion guaranteed in Rust?

Can I mark a function as deprecated?

rust

How do I debug a failing cargo test in GDB?

gdb rust rust-cargo

Is it possible to declare the type of the variable in Rust for loops?

rust

Is it possible to implement methods on type aliases?

rust

Generate pretty (indented) JSON with serde

json rust serde

What is the Rust equivalent to a try-catch statement?