Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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

How should I implement Into for &MyType and &mut MyType without code duplication?

rust

Why do I get an error that "Sync is not satisfied" when moving self, which contains an Arc, into a new thread?

multithreading rust

How do I pass each element of a slice as a separate argument to a variadic C function?

rust variadic

Why does a HTTP GET request with vanilla Rust get no answer?

http rust