Return whether `close()` has already been called.
(&self)
| 47 | impl SessionCloseHandle { |
| 48 | /// Return whether `close()` has already been called. |
| 49 | pub(crate) fn is_closed(&self) -> bool { |
| 50 | self.closed.load(Ordering::Acquire) |
| 51 | } |
| 52 | |
| 53 | /// Perform the full session close sequence. Idempotent: subsequent calls |
| 54 | /// are no-ops and are guaranteed not to panic. |
no test coverage detected