Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How can I only show warnings if there are no errors?

How to call a Rust function from a Python file using pyo3?

python python-3.x rust pyo3

Why is it allowed to have both immutable and mutable borrows of a vector of numeric types in one expression?

rust

Generating strings and identifying substrings is very slow

string substring rust

Is it possible to disable a single default feature in Cargo?

rust rust-cargo

Why doesn't a mutable borrow of self change to immutable?

rust borrow-checker

Embedding Rust tasks in a C program?

c rust

How do I pin indirect dependencies of a crate?

rust rust-cargo

Why does std::rc::Rc need PhantomData?

rust

Is it possible to use pattern matching guards in a `while let`?

How to fix ".. was mutably borrowed here in the previous iteration of the loop" in Rust?

rust ownership

Requiring a trait bound on the associated type of an inherited trait

rust

How do I create a static library in Rust to link with C code in Windows?

c windows gcc rust

Can I include debug information only for my code without packages?

rust rust-cargo

Dynamically select a function to call without intermediate variables

rust

Is this error due to the compiler's special knowledge about RefCell?

rust borrow-checker

Why does "move" in Rust not actually move?

rust

When is reference-counting needed in a single threaded application that doesn't model circular data structures? [duplicate]

rust reference-counting

Why do I get "Borrowed value does not live long enough" in this example?

How do I use parameter overloading or optional parameters in rust?