Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

More convenient way to work with strings in winapi calls

string winapi rust

Load a shared library linked to Rust library in R

r shared-libraries rust

How should I initialize an `Arc<[u8; 65536]>` efficiently?

performance rust

Lifetime error using associated type of trait with lifetime parameter

rust traits lifetime borrowing

macro_rules! macro takes string literal "...", expands to both "..." and b"..."

macros rust

How can I get a reference to the key and value immediately after inserting into a `HashMap`?

rust

What's wrong with this Rust macro?

macros rust

Is it impossible to have a nested match on a recursive datatype that uses a smart pointer like a Box, Rc, or Arc?

rust

Is transmuting PhantomData markers safe?

rust unsafe

Why is WebViewControlProcess.CreateWebViewControlAsync() never completing?

Alpine dockerfile: "cannot produce proc-macro...does not support these crate types"

How do I handle errors in Warp using both Rejection and the question-mark operator?

When does to_owned() not clone?

rust borrowing

Why can't some traits be made into objects

rust trait-objects

How to create a Future from a Result containing a Future?

rust future

Why can a generic lifetime parameter in Rust be specialized to two disjoint lifetimes for one object?

rust lifetime

How do I statically link a Haskell library with a Rust project?

haskell rust ffi

What exactly does __rust_force_expr do?

Can I have a static borrowed reference to a trait object?

traits rust

How to loop over boxed iterator?

rust rust-obsolete