ruma_common/
power_levels.rs
1use js_int::{int, Int};
6use serde::{Deserialize, Serialize};
7
8#[derive(Clone, Debug, Deserialize, Serialize)]
10#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
11pub struct NotificationPowerLevels {
12 #[serde(
14 default = "default_power_level",
15 deserialize_with = "crate::serde::deserialize_v1_powerlevel"
16 )]
17 pub room: Int,
18}
19
20impl NotificationPowerLevels {
21 pub fn new() -> Self {
23 Self { room: default_power_level() }
24 }
25
26 pub fn get(&self, key: &str) -> Option<&Int> {
28 match key {
29 "room" => Some(&self.room),
30 _ => None,
31 }
32 }
33
34 pub fn is_default(&self) -> bool {
36 self.room == default_power_level()
37 }
38}
39
40impl Default for NotificationPowerLevels {
41 fn default() -> Self {
42 Self::new()
43 }
44}
45
46pub fn default_power_level() -> Int {
48 int!(50)
49}