Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Execute LLVM IR code generated from Rust/Python source code

python rust clang llvm llvm-ir

Is it possible to borrow parts of a struct as mutable and other parts as immutable?

rust borrow-checker

Finding the maximum allowable value for generic type T

rust

How to get executable's full target triple as a compile-time constant without using a build script?

How do I implement generic commutative std::ops involving a builtin type for trait objects?

Can a struct containing a raw pointer implement Send and be FFI safe?

rust ffi

Is it possible to write something as complex as `print!` in a pure Rust macro?

Adding unrelated generic parameter triggers strange lifetime error

rust lifetime

Returning a mutable reference in Rust

rust

Is it safe to cast references to unsized transparent types?

rust

Is it possible to create a custom derive that would prevent cycles between types at compile time?

rust

Should I take `self` by value or mutable reference when using the Builder pattern?

Confusing unreachable pattern error

rust

"Jump to definition" in Rust

rust

How to implement a trait for any mutability?

rust traits mutability

How do I implement Into<MyType> for &str

rust

When looping, how does .iter() differ from a reference (&)?

loops reference rust

Creating a Vector of Vectors in Rust

matrix vector rust

Higher Ranked Trait Bound and boxed closures lifetime issue

rust lifetime

Why nested iterator closures won't copy values from outer scope