@@ -1520,21 +1520,19 @@ pub enum CoroutineKind {
1520
1520
impl fmt:: Display for CoroutineKind {
1521
1521
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
1522
1522
match self {
1523
- CoroutineKind :: Async ( k) => fmt:: Display :: fmt ( k, f) ,
1523
+ CoroutineKind :: Async ( k) => {
1524
+ if f. alternate ( ) {
1525
+ f. write_str ( "`async` " ) ?;
1526
+ } else {
1527
+ f. write_str ( "async " ) ?
1528
+ }
1529
+ k. fmt ( f)
1530
+ }
1524
1531
CoroutineKind :: Coroutine => f. write_str ( "coroutine" ) ,
1525
1532
}
1526
1533
}
1527
1534
}
1528
1535
1529
- impl CoroutineKind {
1530
- pub fn descr ( & self ) -> & ' static str {
1531
- match self {
1532
- CoroutineKind :: Async ( ask) => ask. descr ( ) ,
1533
- CoroutineKind :: Coroutine => "coroutine" ,
1534
- }
1535
- }
1536
- }
1537
-
1538
1536
/// In the case of a coroutine created as part of an async/gen construct,
1539
1537
/// which kind of async/gen construct caused it to be created?
1540
1538
///
@@ -1555,21 +1553,12 @@ pub enum CoroutineSource {
1555
1553
1556
1554
impl fmt:: Display for CoroutineSource {
1557
1555
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
1558
- f. write_str ( match self {
1559
- CoroutineSource :: Block => "async block" ,
1560
- CoroutineSource :: Closure => "async closure body" ,
1561
- CoroutineSource :: Fn => "async fn body" ,
1562
- } )
1563
- }
1564
- }
1565
-
1566
- impl CoroutineSource {
1567
- pub fn descr ( & self ) -> & ' static str {
1568
1556
match self {
1569
- CoroutineSource :: Block => "`async` block" ,
1570
- CoroutineSource :: Closure => "`async` closure body" ,
1571
- CoroutineSource :: Fn => "`async` fn body" ,
1557
+ CoroutineSource :: Block => "block" ,
1558
+ CoroutineSource :: Closure => "closure body" ,
1559
+ CoroutineSource :: Fn => "fn body" ,
1572
1560
}
1561
+ . fmt ( f)
1573
1562
}
1574
1563
}
1575
1564
0 commit comments