Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Is there any way to explicitly write the type of a closure?

closures rust

How to use a trait object to refer to struct that has generic methods

rust

Passing two objects, where one holds a reference to another, into a thread

Moving Receiver to thread complains about Sync, but expected Send

multithreading rust

Is there a way to know how many iterations we have done in a for loop?

rust

Add Serialize attribute to type from third-party lib

Immutable reference after mutable borrow

rust

Why do I have to expose a macro implementation's 'use' in the client library?

macros rust

Modifying a slice of str's

rust mutability

Linking Rust with C: undefined reference to '__aeabi' functions

c gcc rust libc eabi

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?