Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Why can size_of be used on unsized types?

memory rust

How to copy data from a stream while also forwarding a stream

rust hyper

Mutate a field of a Vec's element while looping over a field of another element in the same Vec

rust borrow-checker

How can I implement a blocking queue mechanism with futures::sync::mpsc::channel?

rust future rust-tokio

How do I add a signed integer to an unsigned integer in Rust?

rust

Is it possible to let a macro expand to a struct field?

macros rust

Building rust project in docker causes Cargo to get stuck downloading dependencies

Can I force a trait to be covariant?

rust traits covariance

Associated constants in condition of constant ìf`-expression

rust associated-const

How to make a new associated function with a struct that has a closure member? [duplicate]

rust

Vector of custom struct in PyO3

python rust pyo3

Rust function that accepts either HashMap and BtreeMap

rust

HMAC-SHA1 in Rust

Why does function pointer behaviour differ in Rust depending on the mutability of the function pointer?

function rust ffi

How to create a slice from a single element without copying that element?

rust slice

Why is finding the intersection of integer sets faster with a Vec compared to BTreeSet?

How to enable crate features per-platform in Cargo.toml?

rust rust-cargo

Where is Cargo's certificate authority store?

Returning array from Rust to FFI

rust ffi

How can I convert a string of numbers to an array or vector of integers in Rust?

arrays string rust converters