Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Borrow vs mutable borrow strange failure in lifetimes

Is there any difference between partially moved values and moved values in Rust?

rust rust-obsolete

Traits as a return value from a function, and explicit cast

casting rust traits

Capturing lifetimes in rust macro_rules

macros rust

Rust: Segfault when executing specific line of code from a dynamically loaded library

Updating registry `https://example.com/`

rust

How to partition and use heap memory allocated en masse with Rust?

Can I create an "unsafe closure"?

closures rust

Why does a reference not live long enough in case of "as_slice"?

rust

What is the difference between [T; N] and U if U is always set to [T; N]?

Compilation / linking error: Undefined symbols for architecture x86_64

rust

What is the iterator type returned by this Rust function?

Pointer-stashing generics via `mem::transmute()`

pointers rust ffi

Proper way to `use` in a macro

macros rust traits

Consume non-overlapping vector chunks, and combine results

How to unzip a sequence of Result<(A, B), E> to a (Vec<A>, Vec<B>) and stop on first error?

iterator rust

Does reading or writing a whole 32-bit word, even though we only have a reference to a part of it, result in undefined behaviour?

What are the use cases of the newly proposed Pin type?

rust reference rust-pin

How to declare a lifetime for a closure argument?

closures rust lifetime

How does Rust move stack variables that are not Copyable?