Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Overloading the Add-operator without copying the operands

rust

Why is my Rust executable mapped to such high addresses (near the stack) instead of 0x400000?

How to get a '&str' from a NUL-terminated byte slice if the NUL terminator isn't at the end of the slice?

string rust

Pointer dereferencing in Rust

rust

Why can't a struct be assigned to a binding with a trait it implements [duplicate]

rust

Cannot get `Regex::replace()` to replace a numbered capture group

regex rust

Why is a program that updates a large static floating point array slower in Rust than in C?

c performance rust

Should the Copy trait always be implemented if possible?

copy rust move

Is there simpler method to get the string value of an Actix-Web HTTP header?

rust rust-actix

How do I make a nom whitespace parser that also skips line-oriented comments?

rust comments nom

Why does type inference behave differently for `HashMap` and my own struct in the presence of a type parameter default?

rust

Why does PartialEq return a bool, when PartialOrd is more nuanced and returns Option<Ordering>?

rust equality

Why is IntoIter not owning the values? [duplicate]

types rust ownership

Const variable returns two different values

rust

What happens in Rust using "match" if nothing matches?

rust

Can I split crate in multiple files without introducing modules for each file?

Rust library development workflow

workflow rust rust-cargo

What can cause Rust's TcpSocket::write() to return "invalid input"?

sockets rust

How do I match a String in a struct with a constant value?

pattern-matching rust

What is the preferred way of matching a variable with a pattern guard that doesn't use the matched value?

rust