Struct ruma_common::push::PushConditionRoomCtx[][src]

pub struct PushConditionRoomCtx {
    pub room_id: RoomId,
    pub member_count: UInt,
    pub user_display_name: String,
    pub users_power_levels: BTreeMap<UserId, Int>,
    pub default_power_level: Int,
    pub notification_power_levels: NotificationPowerLevels,
}

The context of the room associated to an event to be able to test all push conditions.

Fields

room_id: RoomId

The ID of the room.

member_count: UInt

The number of members in the room.

user_display_name: String

The display name of the current user in the room.

users_power_levels: BTreeMap<UserId, Int>

The power levels of the users of the room.

default_power_level: Int

The default power level of the users of the room.

notification_power_levels: NotificationPowerLevels

The notification power levels of the room.

Trait Implementations

impl Clone for PushConditionRoomCtx[src]

impl Debug for PushConditionRoomCtx[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.