Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Idiomatic way to use a computed value as a pattern in match

rust

Translating C preprocessor to Rust

c rust

How to create a DST type?

rust

How to convert C variable-length array code to Rust?

type annotations required in the context of associated types an iterators

rust

Is it possible to implement a custom Iterator::sum in Rust?

iterator rust

Is there a way to have private functions in public traits?

module rust private traits

Design help: threading within a struct

multithreading rust

"cannot infer an appropriate lifetime for pattern due to conflicting requirements" in `ref mut` pattern

rust lifetime

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