ruma_client_api/alias/
get_alias.rs
1pub mod v3 {
6 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata, OwnedRoomAliasId, OwnedRoomId, OwnedServerName,
13 };
14
15 const METADATA: Metadata = metadata! {
16 method: GET,
17 rate_limited: false,
18 authentication: None,
19 history: {
20 1.0 => "/_matrix/client/r0/directory/room/:room_alias",
21 1.1 => "/_matrix/client/v3/directory/room/:room_alias",
22 }
23 };
24
25 #[request(error = crate::Error)]
27 pub struct Request {
28 #[ruma_api(path)]
30 pub room_alias: OwnedRoomAliasId,
31 }
32
33 #[response(error = crate::Error)]
35 pub struct Response {
36 pub room_id: OwnedRoomId,
38
39 pub servers: Vec<OwnedServerName>,
41 }
42
43 impl Request {
44 pub fn new(room_alias: OwnedRoomAliasId) -> Self {
46 Self { room_alias }
47 }
48 }
49
50 impl Response {
51 pub fn new(room_id: OwnedRoomId, servers: Vec<OwnedServerName>) -> Self {
53 Self { room_id, servers }
54 }
55 }
56}