Returns a clone of the state, used for moving the state across contexts (tasks/threads/etc...).
(&self)
| 88 | /// Returns a clone of the state, used for moving the state across contexts |
| 89 | /// (tasks/threads/etc...). |
| 90 | pub fn get_state_clone(&self) -> BtlePlugFutureStateShared<T> { |
| 91 | self.waker_state.clone() |
| 92 | } |
| 93 | |
| 94 | // TODO Should we implement drop on this, so it'll yell if its dropping and |
| 95 | // the waker didn't fire? otherwise it seems like we could have quiet |
no outgoing calls
no test coverage detected