Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

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?

Convert vectors to arrays and back [duplicate]

rust

When do I need to specify explicit lifetimes in Rust?

rust lifetime-scoping

How to automate Java bindings for Rust code?

How do I return a vector element from a Rust function?

vector reference rust

Is there a way to directly run the program built by Cargo in gdb or lldb?

How does Rust handle the "island of isolation" (cycles of references) scenario for reference-counted types?

rust reference-counting