Artem Kryvokrysenko

Results 5 issues of Artem Kryvokrysenko

Module level rustdoc has different syntax than regular rustdoc: ``` //! my documentation or #![doc="my documantation"] ``` Right now this case is not handled by the post-processor and module level...

Currently `EntryRef::or_insert*` methods have constraint `K: From` which is required to construct "owned" key from "borrowed" key during insertion operation. Rust documentation recommends not to use `From` as trait constraint,...

Currently the only way to construct Aligned value is using `aligned::Aligned` function which returns instance of `Aligned` struct. This does not work well with type aliases. For example, consider this...

`TunTapInterface` can work in TUN L3 mode which does not require `medium-ethernet` feature. `TunTapInterface` already mostly respects `medium-ethernet` feature flag and enables relevant TAP L2 functionality only when `medium-ethernet` is...

`embassy_sync::waitqueue::WakerRegistration` requires mutable reference for doing register/wake operations. In some cases there is no mutable reference to `WakerRegistration` available. This can be worked around by using `RefCell` which has small...