···274274 /// Get the base URI for the client.
275275 fn base_uri(&self) -> impl Future<Output = Url>;
276276277277+ /// Set the base URI for the client.
278278+ fn set_base_uri(&self, url: Url) -> impl Future<Output = ()> {
279279+ let _ = url;
280280+ async {}
281281+ }
282282+277283 /// Get the call options for the client.
278284 fn opts(&self) -> impl Future<Output = CallOptions<'_>> {
279285 async { CallOptions::default() }
286286+ }
287287+288288+ /// Set the call options for the client.
289289+ fn set_opts(&self, opts: CallOptions) -> impl Future<Output = ()> {
290290+ let _ = opts;
291291+ async {}
280292 }
281293282294 /// Send an XRPC request and parse the response