#[non_exhaustive]pub struct PushConditionPowerLevelsCtx {
pub users: BTreeMap<OwnedUserId, Int>,
pub users_default: Int,
pub notifications: NotificationPowerLevels,
pub rules: RoomPowerLevelsRules,
}
Expand description
The room power levels context to be able to test the corresponding push conditions.
Should be constructed using From<RoomPowerLevels>
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.users: BTreeMap<OwnedUserId, Int>
The power levels of the users of the room.
users_default: Int
The default power level of the users of the room.
notifications: NotificationPowerLevels
The notification power levels of the room.
rules: RoomPowerLevelsRules
The tweaks for determining the power level of a user.
Implementations§
Source§impl PushConditionPowerLevelsCtx
impl PushConditionPowerLevelsCtx
Sourcepub fn new(
users: BTreeMap<OwnedUserId, Int>,
users_default: Int,
notifications: NotificationPowerLevels,
rules: RoomPowerLevelsRules,
) -> Self
pub fn new( users: BTreeMap<OwnedUserId, Int>, users_default: Int, notifications: NotificationPowerLevels, rules: RoomPowerLevelsRules, ) -> Self
Create a new PushConditionPowerLevelsCtx
.
Sourcepub fn has_sender_notification_permission(
&self,
user_id: &UserId,
key: &NotificationPowerLevelsKey,
) -> bool
pub fn has_sender_notification_permission( &self, user_id: &UserId, key: &NotificationPowerLevelsKey, ) -> bool
Whether the given user has the permission to notify for the given key.
Trait Implementations§
Source§impl Clone for PushConditionPowerLevelsCtx
impl Clone for PushConditionPowerLevelsCtx
Source§fn clone(&self) -> PushConditionPowerLevelsCtx
fn clone(&self) -> PushConditionPowerLevelsCtx
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for PushConditionPowerLevelsCtx
impl RefUnwindSafe for PushConditionPowerLevelsCtx
impl Send for PushConditionPowerLevelsCtx
impl Sync for PushConditionPowerLevelsCtx
impl Unpin for PushConditionPowerLevelsCtx
impl UnwindSafe for PushConditionPowerLevelsCtx
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more