Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Synchronizing access to FFI calls in Rust (via a global RWLock?)

Generating secure random numbers in Rust

random rust rust-obsolete

How do you have a default #[cfg] target in rust for 'everything else'?

rust

Is there a way to use collections on the stack in Rust?

collections stack rust

Implementing a "cautious" take_while using Peekable

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