Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Is it possible to create a macro to implement builder pattern methods?

rust

Is there a Rust equivalent to `dynamic` in C#?

dynamic rust

How do I exclude a file from being built on OS X?

How to break out of a do-while style loop in Rust?

rust

How can I use Cargo to build a library as both an rlib and a dylib but with different contents?

rust rust-cargo

How to define a variable that conforms to a trait in Rust? [duplicate]

rust traits

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