(
writer: &mut W,
connection_id: &str,
)
| 865 | } |
| 866 | |
| 867 | async fn send_get_connected_applications<W: AsyncWrite + Unpin>( |
| 868 | writer: &mut W, |
| 869 | connection_id: &str, |
| 870 | ) -> Result<(), AppError> { |
| 871 | send_rpc( |
| 872 | writer, |
| 873 | "_rpc_getConnectedApplications:", |
| 874 | rpc_args(connection_id), |
| 875 | ) |
| 876 | .await |
| 877 | } |
| 878 | |
| 879 | async fn send_forward_indicate_webview<W: AsyncWrite + Unpin>( |
| 880 | writer: &mut W, |
no test coverage detected