(&self)
| 481 | } |
| 482 | |
| 483 | async fn connection_parameters(&self) -> Result<Option<ConnectionParameters>> { |
| 484 | self.with_obj(|_env, obj| { |
| 485 | Ok(obj |
| 486 | .get_connection_parameters() |
| 487 | .map_err(|e| Error::Other(format!("{:?}", e).into()))?) |
| 488 | }) |
| 489 | } |
| 490 | |
| 491 | async fn request_connection_parameters(&self, preset: ConnectionParameterPreset) -> Result<()> { |
| 492 | let priority = match preset { |
nothing calls this directly
no test coverage detected