Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Compare definite-length arrays

arrays rust rust-obsolete

References to trait objects are not cloneable

traits 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