ruma-state-res 0.16.0

An abstraction for Matrix state resolution.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Helper traits and types to work with events (aka PDUs).

mod create;
mod join_rules;
pub(crate) mod member;
pub(crate) mod power_levels;
mod third_party_invite;
mod traits;

pub use self::{
    create::RoomCreateEvent,
    join_rules::RoomJoinRulesEvent,
    member::RoomMemberEvent,
    power_levels::{RoomPowerLevelsEvent, RoomPowerLevelsIntField},
    third_party_invite::RoomThirdPartyInviteEvent,
    traits::Event,
};