Returns whether this fiber has finished executing.
(&self)
| 221 | |
| 222 | /// Returns whether this fiber has finished executing. |
| 223 | pub fn done(&self) -> bool { |
| 224 | self.done.get() |
| 225 | } |
| 226 | |
| 227 | /// Gets the stack associated with this fiber. |
| 228 | pub fn stack(&self) -> &FiberStack { |
no test coverage detected