#[non_exhaustive]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,
}Available on crate feature 
events only.Expand description
Redacted form of RoomPowerLevelsEventContent.
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.ban: IntThe 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: IntThe default level required to send message events.
invite: IntThe 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: IntThe level required to kick a user.
redact: IntThe level required to redact an event.
state_default: IntThe 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: IntThe 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 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 moreSource§impl<'de> Deserialize<'de> for RedactedRoomPowerLevelsEventContent
 
impl<'de> Deserialize<'de> for RedactedRoomPowerLevelsEventContent
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<RedactedRoomPowerLevelsEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<RedactedRoomPowerLevelsEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<RedactedRoomPowerLevelsEventContent> for RoomPowerLevelsSource
 
impl From<RedactedRoomPowerLevelsEventContent> for RoomPowerLevelsSource
Source§fn from(value: RedactedRoomPowerLevelsEventContent) -> RoomPowerLevelsSource
 
fn from(value: RedactedRoomPowerLevelsEventContent) -> RoomPowerLevelsSource
Converts to this type from the input type.
Source§impl RedactedStateEventContent for RedactedRoomPowerLevelsEventContent
 
impl RedactedStateEventContent for RedactedRoomPowerLevelsEventContent
Source§type StateKey = EmptyStateKey
 
type StateKey = EmptyStateKey
The type of the event’s 
state_key field.Source§fn event_type(&self) -> StateEventType
 
fn event_type(&self) -> StateEventType
Get the event’s type, like 
m.room.name.Source§impl Serialize for RedactedRoomPowerLevelsEventContent
 
impl Serialize for RedactedRoomPowerLevelsEventContent
Source§fn serialize<__S>(
    &self,
    __serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>(
    &self,
    __serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for RedactedRoomPowerLevelsEventContent
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