Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Is it possible to emit Rust attributes from within macros?

macros rust

Problems with mutability in a closure

rust closures mutable

Conventions for naming mutable/immutable API functions?

rust naming-conventions

Possible to apply constraints on identifiers passed into a macro?

macros rust

Skip struct field when serializing

rust serde

Porting a C++ Program to Rust: Of reinterpret_cast, Structs and Bluetooth

c++11 struct rust bluez

Define a trait with a function that returns an associated type with the same lifetime as one parameter

How do I store a result using Serde Zero-copy deserialization of a Futures-enabled Hyper Chunk?

rust zero-copy serde

Send SIGINT to a process by sending ctrl-c to stdin

unix rust process signals pty

Why can a Rust struct be defined without a semicolon?

rust

How do I call a C++ constructor via Rust FFI?

c++ rust ffi

Is it possible to create a macro that implements Ord by delegating to a struct member?

rust rust-macros

Is it possible to have a struct which contains a reference to a value which has a shorter lifetime than the struct?

struct rust lifetime

Parsing an object inside an object with serde_json

json rust serde hyper serde-json

Is there any performance disadvantage to putting everything in main?

Is there a cleaner way to test functions that use functions that require user input in Rust?

unit-testing rust

Map C++ exceptions to Result

c++ opencv rust ffi

Check whether compiler is nightly at compile time [closed]

rust

How to store a reference without having to deal with lifetimes?

rust symbols ffi lifetime

How to convert a Vec into an array without copying the elements?

arrays vector rust