summaryrefslogtreecommitdiffstats
path: root/futures/src/subscription.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove generic `Hasher` and `Event` from `subscription::Recipe`Libravatar Héctor Ramón Jiménez2023-03-051-56/+260
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-02-181-3/+3
|
* Annotate `Command` and `Subscription` with `#[must_use]`Libravatar Ian Douglas Scott2023-01-261-0/+1
| | | | | | Calling a function returning one of these types without using it is almost certainly a mistake. Luckily Rust's `#[must_use]` can help warn about this.
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-01-141-3/+3
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-12-071-3/+3
|
* Fix outdated links in documentationLibravatar Héctor Ramón Jiménez2022-11-101-3/+3
|
* Address Clippy lintsLibravatar Poly2022-07-091-5/+1
|
* Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-3/+3
|
* Change GitHub namespace to new org for all filesLibravatar LordRatte2022-01-031-3/+3
|
* docs: update all 0.2 github links to 0.3Libravatar Yusuf Bera Ertan2021-06-141-3/+3
|
* Update example links to point to `0.2` branchLibravatar Héctor Ramón Jiménez2020-11-261-3/+3
|
* Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-261-27/+1
| | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* Accept a function pointer in `Subscription::map`Libravatar Héctor Ramón Jiménez2020-10-291-14/+5
| | | | | | | | | Instead of a closure, a function pointer can be hashed and used to uniquely identify a particular `Subscription`. This should fix a bug where two different instances of `Subscription` producing the same output were not treated differently by the runtime, causing one of them to be ignored.
* Add examples to `subscription::Recipe` docsLibravatar Héctor Ramón Jiménez2020-04-021-0/+12
|
* Make `subscription::Recipe` cross-platformLibravatar Héctor Ramón Jiménez2020-03-261-19/+15
| | | | By removing the `Send` requirement when targetting Wasm
* Implement `Subscription::with`Libravatar Héctor Ramón Jiménez2020-03-051-0/+70
|
* Write documentation for `iced_futures`Libravatar Héctor Ramón Jiménez2020-01-201-19/+20
|
* Create `iced_futures` and wire everything upLibravatar Héctor Ramón Jiménez2020-01-191-0/+188