diff options
Diffstat (limited to 'rtic-macros/src/syntax/ast.rs')
| -rw-r--r-- | rtic-macros/src/syntax/ast.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rtic-macros/src/syntax/ast.rs b/rtic-macros/src/syntax/ast.rs index bc892e3..ad73a89 100644 --- a/rtic-macros/src/syntax/ast.rs +++ b/rtic-macros/src/syntax/ast.rs @@ -236,6 +236,9 @@ pub struct SoftwareTask { /// The task is declared externally pub is_extern: bool, + + /// The task will never return `Poll::Ready` + pub is_bottom: bool, } /// Software task metadata |
