Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Get a random character from a string and append to another string

string rust

but there is no value for it to be borrowed from

rust

Is this `unsafe` code Undefined Behavior in Rust?

rust

How do I use SXD-XPath to iterate over a nodeset and print out every value?

xpath rust

Why does x = x * y / z give a different result from x *= y / z for integers?

Rust: How to specify lifetimes in closure arguments?

Copy body and headers from hyper HTTP request to a new request while inspecting the body

rust hyper

Sphinx autodoc if Python method moved to Rust PyO3

Why does using ? on Result<_, &str> cause a lifetime error?

rust lifetime

Why do I get "overflow evaluating the requirement `Sized`" when using tokio_io's read_exact with a Rc<TcpStream>?

rust

How to find if two strings have common characters using Rust?

rust

Can a build script take arguments?

rust

Borrow Checker: Cannot borrow as immutable because it is also borrowed as mutable

rust

How do I define a function with different calling conventions depending on the architecture using a macro?

rust rust-macros

Messaging between two tokio runtimes inside separate threads

Test does not compile: "the async keyword is missing from the function declaration"

Why is the format! macro slower than pushing into a String directly?

string performance rust

Implement move-esque behavior on &mut self function to allow calls thru ?Sized owner?

rust