ruma_client_api/device/
get_devices.rs
1pub mod v3 {
6 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata,
13 };
14
15 use crate::device::Device;
16
17 const METADATA: Metadata = metadata! {
18 method: GET,
19 rate_limited: false,
20 authentication: AccessToken,
21 history: {
22 1.0 => "/_matrix/client/r0/devices",
23 1.1 => "/_matrix/client/v3/devices",
24 }
25 };
26
27 #[request(error = crate::Error)]
29 #[derive(Default)]
30 pub struct Request {}
31
32 #[response(error = crate::Error)]
34 pub struct Response {
35 pub devices: Vec<Device>,
37 }
38
39 impl Request {
40 pub fn new() -> Self {
42 Self {}
43 }
44 }
45
46 impl Response {
47 pub fn new(devices: Vec<Device>) -> Self {
49 Self { devices }
50 }
51 }
52}