Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

String-keyed HashMap in rust?

hashmap rust

Where is Rust storing all these bytes?

rust

Defining tuple methods

methods tuples rust

How can I constrain the lifetime of a struct to that of a 'parent' struct?

rust lifetime

Is there any way to work around an unused type parameter?

rust traits type-parameter

What happens when a stack-allocated value is boxed?

rust boxing

Mutable multidimensional array as a function argument

rust

Global feature gates in Cargo

rust rust-cargo

'Unresolved name' inside macro despite 'ident' designator

rust

What is an idiomatic way to fill a user-supplied buffer when reading bytes?

io rust

How to bind multiple fields of a boxed struct without getting "use moved value" error?

struct rust ownership

Thread-safe mutable non-owning pointer in Rust?

multithreading rust

How does `Borrow` work without trait specialization?

rust traits

Can I set an LLDB breakpoint when multiple Rust source files share the same name?

rust lldb

How to idiomatically construct struct with heap references?

rust

Continuous test-driven development for Rust

tdd rust

Is it possible to create a type alias that has trait bounds on a generic type for a function?

Why is drop not called for a logger implementation?

logging rust destructor

How to safely store immutable, aliasing copies of a generic value?

Why do I get a `trait bound `[T]: std::marker::Sized` is not satisfied when I try and implement Ord and Eq manually on unsized types?

rust traits