Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How can I silently catch panics in QuickCheck tests?

testing rust panic

Iterate over collection. Drop it as soon as Iterator is dropped

iterator rust ownership

Unable to return a vector of string slices: borrowed value does not live long enough

vector rust borrowing

How to measure a functions stack usage in Rust?

rust stack-memory

How to lazily create map entry whose construction uses self in Rust

hashmap rust borrow-checker

What kind of lifetime parameter do I have to use here when declaring a struct field object type

struct rust lifetime

Wrong number of lifetime parameters when using a modified `Chars` iterator

iterator rust traits lifetime

After a load test, every new mio connection immediately hangs up

rust mio

Dereference FFI pointer in Python to get underlying array

python rust cffi

How to define some macros as 'private' to a module, when using `macro_use` in Rust?

macros namespaces rust

`if` condition remains borrowed in body [duplicate]

rust

Rust code cannot link with a C library compiled on Windows because there is an unresolved external symbol

How do I implement a container with support for a mutable iterator? [duplicate]

How to cleanly break tokio-core event loop and futures::Stream in Rust

rust

How do I return an iterator that has a reference to something inside a RefCell?

Using DTrace to get stack traces / profiling data on Rust

Why is `Future::poll` not called repeatedly after returning `NotReady`?

multithreading rust future

Implementing only IndexMut without implementing Index

rust

Kcov is reporting 100% for Rust lib even though some methods are not covered

rust kcov

How to report errors in a procedural macro using the quote macro?