Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Why would it be necessary to perform two casts to a mutable raw pointer in a row?

pointers casting rust

How to get an Option's value or set it if it's empty?

rust

How can I create hashable trait objects / trait objects with generic method parameters?

generics rust traits

How to set logging level while running cargo test? [duplicate]

logging rust rust-cargo

How do I use a feature of a dependency only for testing?

testing rust rust-cargo

Is there a way to hide a macro pattern from docs?

macros rust rust-cargo rustdoc

Allow a function to accept a `T` or any `FnMut(T) -> T`

rust

Can Rust macros parse JSON?

json rust

Is mem::forget(mem::uninitialized()) defined behavior?

How to handle Result in flat_map

rust

How to build a project using Cargo in an offline environment?

linux macos rust

How to idiomatically / efficiently pipe data from Read+Seek to Write?

io pipe rust

Type alias for enum

rust

How to use vec! macro in a #![no_std] library?

rust

Is there a way to choose the lesser of two lifetimes?

rust lifetime

Why is there one `Atomic*` type for many primitive type instead of a generic `Atomic<T>`?

rust atomic

What does "expected item, found let" mean?

rust

unresolved name rand::thread_rng

rust

Passing a list of strings from Python to Rust

python rust ctypes ffi

Let &mut syntax

syntax rust