Request plugin shutdown
(&self)
| 1092 | |
| 1093 | /// Request plugin shutdown |
| 1094 | pub fn shutdown(&self) -> Result<(), Error> { |
| 1095 | self.wait_handle |
| 1096 | .send(()) |
| 1097 | .context("error waiting for shutdown")?; |
| 1098 | Ok(()) |
| 1099 | } |
| 1100 | } |
| 1101 | |
| 1102 | pub enum FeatureBitsKind { |
no test coverage detected