Linus Behrbohm

Results 17 issues of Linus Behrbohm

https://github.com/emilk/egui/pull/543#issuecomment-905395267

Hi, I am having some trouble spawning a future on riker's executor. I want to spawn a stream polling future that should forward messages to an actor. Basically this is...

Hi, this PR makes it possible to run futures on a tokio runtime in riker: ```rust #[derive(Default)] struct AsyncActor; impl Actor for AsyncActor { type Msg = MessageType; fn recv(&mut...

https://github.com/dimforge/nalgebra/issues/834 This is an initial draft for this implementation. I only managed to implement `into_row_iter` and `into_column_iter` for `DMatrix` I think because I could not use `Owned where R: Dim...

Many code items are not documented by the documentation, which makes the API harder to understand. Examples are - [`Func`](https://docs.rs/warp/0.2.5/src/warp/generic.rs.html#38) - [`CombinedRejection`](https://docs.rs/warp/0.2.5/src/warp/reject.rs.html#592) - [`FilterBase`](https://docs.rs/warp/0.2.5/src/warp/filter/mod.rs.html#38) and a lot more I don't...

easy

This crate could use some examples to showcase its features

### Summary Extension to [petgraph::dot::Dot](https://docs.rs/petgraph/0.5.1/petgraph/dot/struct.Dot.html) to parse graph from dot file. ### Motivation There currently is a way to write Graphs to dot files but there is no way to...

feature-request

methods for iterators of `(NodeIndex, &N)` and `(NodeIndex, &mut N)`

The [edges()](https://docs.rs/petgraph/0.5.0/petgraph/graph/struct.Graph.html?search=#method.edges) method of Graph returns all outgoing edges of a node if the graph uses Directed edges. How to get all edges of a node in a directed Graph?...

Writes Graph to file specified by path, in dot format.