Friedel Ziegelmayer

Results 198 issues of Friedel Ziegelmayer

While on desktop applications it makes sense to store the crash report in a file, on mobile devices it can be challenging to actually find the report file, especially for...

Currently when using static properties for classes there is no way to make flow like them. Ideally a similar transform as is done for `@prop` would be done for `@static`.

enhancement

When moving or copying mails, the `UIDPLUS` extension returns the destination ids. Currently this information is not exposed, it would be great to make this available. Reference: https://tools.ietf.org/html/rfc4315

Currently `io::stdin()` when used with `lines().fuse()` from `futures`, will panic on the first poll. This adds a test for this case, as well as a potential fix.

### What does this PR do? Adds - `TcpListener::poll_accept`, - `TcpListener::poll_shared_accept` and - `TcpStream::poll_shutdown` and internally adds `poll_collect_rw`. ### Motivation The main methods I need right now for #531.

- Based on the discussion in #521 - Should be merged into #521

I am experiencing a test failure when running against master on my current dev machine, when running `cargo test` ``` failures: ---- sys::sysfs::test::list_and_mask_iterator_consistent_this_machine_sysfs stdout ---- thread 'sys::sysfs::test::list_and_mask_iterator_consistent_this_machine_sysfs' panicked at 'assertion...

I am running into issues when trying to work with TCP and UDP transports, because they don’t implement poll_ methods. Especially wrapping them into streams becomes very complex and sometimes...

I was wondering if this could be added. The use case is that I sequentially generate data, and need to read back into the already written parts, but would like...

I am trying to implement a way of passing more complex data between wasm and go and was looking for something like `malloc` which emscripten provides to allocate a new...