Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Is it idiomatic rust to accept arguments that `impl Borrow<T>` to abstract over references and values of T? [closed]

rust

What are the rules for blanket implementations regarding modules?

Borrow vs mutable borrow strange failure in lifetimes

Is there any difference between partially moved values and moved values in Rust?

rust rust-obsolete

Traits as a return value from a function, and explicit cast

casting rust traits

Capturing lifetimes in rust macro_rules

macros rust

Rust: Segfault when executing specific line of code from a dynamically loaded library

Updating registry `https://example.com/`

rust

How to partition and use heap memory allocated en masse with Rust?

Can I create an "unsafe closure"?

closures rust

Why does a reference not live long enough in case of "as_slice"?

rust

What is the difference between [T; N] and U if U is always set to [T; N]?

How to pass list of paths to a function?

rust

How to unzip a sequence of Result<(A, B), E> to a (Vec<A>, Vec<B>) and stop on first error?

iterator rust

Removing debug macros in Rust

logging rust rust-cargo

What are the use cases of the newly proposed Pin type?

rust reference rust-pin

How to declare a lifetime for a closure argument?

closures rust lifetime

How does Rust move stack variables that are not Copyable?

Suppress panic output in Rust when using panic::catch_unwind

exception rust

How do I use std::num::sqrt to compute the square root of a number?

rust