ruma_client_api/rendezvous/
discover_rendezvous.rs1pub mod unstable {
6 use ruma_common::{
11 api::{auth_scheme::AccessTokenOptional, request, response},
12 metadata,
13 };
14
15 metadata! {
16 method: GET,
17 rate_limited: true,
18 authentication: AccessTokenOptional,
19 history: {
20 unstable => "/_matrix/client/unstable/io.element.msc4388/rendezvous",
21 }
22 }
23
24 #[request(error = crate::Error)]
26 pub struct Request {}
27
28 impl Request {
29 pub fn new() -> Self {
31 Self {}
32 }
33 }
34
35 #[response(error = crate::Error)]
36 pub struct Response {}
38
39 impl Response {
40 pub fn new() -> Self {
42 Self {}
43 }
44 }
45}