pub struct RedactedRoomPowerLevelsEventContent {
pub ban: Int,
pub events: BTreeMap<TimelineEventType, Int>,
pub events_default: Int,
pub invite: Int,
pub kick: Int,
pub redact: Int,
pub state_default: Int,
pub users: BTreeMap<OwnedUserId, Int>,
pub users_default: Int,
}
Expand description
Redacted form of RoomPowerLevelsEventContent
.
Fields§
§ban: Int
The level required to ban a user.
events: BTreeMap<TimelineEventType, Int>
The level required to send specific event types.
This is a mapping from event type to power level required.
events_default: Int
The default level required to send message events.
invite: Int
The level required to invite a user.
This field was redacted in room versions 1 through 10. Starting from room version 11 it is preserved.
kick: Int
The level required to kick a user.
redact: Int
The level required to redact an event.
state_default: Int
The default level required to send state events.
users: BTreeMap<OwnedUserId, Int>
The power levels for specific users.
This is a mapping from user_id
to power level for that user.
users_default: Int
The default power level for every user in the room.
Trait Implementations§
source§impl Clone for RedactedRoomPowerLevelsEventContent
impl Clone for RedactedRoomPowerLevelsEventContent
source§fn clone(&self) -> RedactedRoomPowerLevelsEventContent
fn clone(&self) -> RedactedRoomPowerLevelsEventContent
Returns a copy 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 moresource§impl<'de> Deserialize<'de> for RedactedRoomPowerLevelsEventContent
impl<'de> Deserialize<'de> for RedactedRoomPowerLevelsEventContent
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EventContent for RedactedRoomPowerLevelsEventContent
impl EventContent for RedactedRoomPowerLevelsEventContent
§type EventType = StateEventType
type EventType = StateEventType
The Rust enum for the event kind’s known types.
source§fn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like
m.room.message
.source§impl From<RedactedRoomPowerLevelsEventContent> for RoomPowerLevels
impl From<RedactedRoomPowerLevelsEventContent> for RoomPowerLevels
source§fn from(c: RedactedRoomPowerLevelsEventContent) -> Self
fn from(c: RedactedRoomPowerLevelsEventContent) -> Self
Converts to this type from the input type.
source§impl RedactedStateEventContent for RedactedRoomPowerLevelsEventContent
impl RedactedStateEventContent for RedactedRoomPowerLevelsEventContent
§type StateKey = EmptyStateKey
type StateKey = EmptyStateKey
The type of the event’s
state_key
field.Auto Trait Implementations§
impl RefUnwindSafe for RedactedRoomPowerLevelsEventContent
impl Send for RedactedRoomPowerLevelsEventContent
impl Sync for RedactedRoomPowerLevelsEventContent
impl Unpin for RedactedRoomPowerLevelsEventContent
impl UnwindSafe for RedactedRoomPowerLevelsEventContent
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