Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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

Is it possible to create a Stream from a File rather than loading the file contents into memory?

rust

The trait bound `T: std::default::Default` is not satisfied when using PhantomData<T> [duplicate]

rust

How to get a duration of 1 day with Rust chrono?

rust duration rust-chrono

How do I implement an async Drop in Rust?

rust async-await

How can I extract keys and values from a string when the value contains the separator between keys and values or the separator between pairs?

rust

Why do proc-macros have to be defined in proc-macro crate?

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

arrays string rust converters