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