(&self)
| 335 | |
| 336 | impl CallbackState { |
| 337 | fn take_sender(&self) -> Option<oneshot::Sender<String>> { |
| 338 | self.tx |
| 339 | .lock() |
| 340 | .unwrap_or_else(std::sync::PoisonError::into_inner) |
| 341 | .take() |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | /// Run the ephemeral callback server for the OIDC redirect. |
no outgoing calls
no test coverage detected