Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How to tell rustc (through cargo) where to find my dll import library

windows rust rust-cargo

How do I return a new struct from Option::unwrap_or?

struct rust lifetime

Value does not live long enough with explicit lifetime, but does live long enough when omitted

rust lifetime

How can I express a trait bound on a type parameter for another generic type's trait bound?

generics rust traits

Is there a way to convince Rust that a particular associated type is the same as a concrete type?

rust metaprogramming monads

What is the idiomatic way to encode an iterator with serde_json?

json rust encode serde

How to set lifetime for boxed closure capturing `self`?

iterator rust lifetime

How to implement the RVExtension function for an ArmA 3 DLL in Rust?

c++ rust ffi

Correctly storing a Rust Rc<T> in C-managed memory

rust ffi

How to implement Error::cause properly?

How do I read an Iron Request in both middleware and the handler?

request rust middleware iron

Is it possible to use Box with no_std?

rust

Handling mixed object arrays in Serde

json serialization rust serde

Is it possible to deactivate file locking in cargo?

rust rust-cargo

Mutable reference to container object within iterator loop

rust

Method not compatible with trait with confusing error message

rust

Rust cargo: how to use different features for a dep when a particular feature is enabled?

rust rust-cargo

Implement function for trait implementor with dynamic and static dispatch

generics rust

Why does Cargo create multiple directories for the same registry?

rust rust-cargo

Are reference values copied in Rust? [duplicate]

reference rust