From 162db186973895cb901d476396a0205bc04214b0 Mon Sep 17 00:00:00 2001 From: parrrate Date: Thu, 9 Apr 2026 12:56:16 +0000 Subject: [PATCH] async fn in topics --- src/topics.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/topics.md b/src/topics.md index de9cbc6..e3a3106 100644 --- a/src/topics.md +++ b/src/topics.md @@ -5,9 +5,9 @@ Rows are ordered based on estimated difficulty. | lifetimes\[-adjacent\] | `trait`s | `struct`s | |------------------------|--------------------|---------------| | [explicit lifetimes] | [`Fn`?] | [`Duration`] | -| [from reference] | [exclusive traits] | [All Errors?] | -| [extracting lifetimes] | [merging traits] | [`RcChars`] | -| [composition] | | [`AnyStr`] | +| [from reference] | [`async` `Fn`] | [All Errors?] | +| [extracting lifetimes] | [exclusive traits] | [`RcChars`] | +| [composition] | [merging traits] | [`AnyStr`] | p.s. most of the exercises are actually about `trait`s, this categorisation isn't strict. @@ -22,3 +22,4 @@ p.s. most of the exercises are actually about `trait`s, this categorisation isn' [`Duration`]: ./exercises/duration.md [All Errors?]: ./exercises/all_errors.md [from reference]: ./exercises/fromref.md +[`async` `Fn`]: ./exercises/async_fn.md