#[non_exhaustive]pub struct RedactedRoomPowerLevelsEventContent {
pub ban: Int,
pub events: BTreeMap<RoomEventType, Int>,
pub events_default: 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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ban: Int
The level required to ban a user.
If you activate the compat
feature, deserialization will work for stringified
integers too.
events: BTreeMap<RoomEventType, Int>
The level required to send specific event types.
This is a mapping from event type to power level required.
If you activate the compat
feature, deserialization will work for stringified
integers too.
events_default: Int
The default level required to send message events.
If you activate the compat
feature, deserialization will work for stringified
integers too.
kick: Int
The level required to kick a user.
If you activate the compat
feature, deserialization will work for stringified
integers too.
redact: Int
The level required to redact an event.
If you activate the compat
feature, deserialization will work for stringified
integers too.
state_default: Int
The default level required to send state events.
If you activate the compat
feature, deserialization will work for stringified
integers too.
users: BTreeMap<OwnedUserId, Int>
The power levels for specific users.
This is a mapping from user_id
to power level for that user.
If you activate the compat
feature, deserialization will work for stringified
integers too.
users_default: Int
The default power level for every user in the room.
If you activate the compat
feature, deserialization will work for stringified
integers too.
Trait Implementations
sourceimpl Clone for RedactedRoomPowerLevelsEventContent
impl Clone for RedactedRoomPowerLevelsEventContent
sourcefn clone(&self) -> RedactedRoomPowerLevelsEventContent
fn clone(&self) -> RedactedRoomPowerLevelsEventContent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'de> Deserialize<'de> for RedactedRoomPowerLevelsEventContent
impl<'de> Deserialize<'de> for RedactedRoomPowerLevelsEventContent
sourcefn 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
sourceimpl EventContent for RedactedRoomPowerLevelsEventContent
impl EventContent for RedactedRoomPowerLevelsEventContent
type EventType = StateEventType
type EventType = StateEventType
The Rust enum for the event kind’s known types.
sourcefn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like m.room.message
.
sourceimpl From<RedactedRoomPowerLevelsEventContent> for RoomPowerLevels
impl From<RedactedRoomPowerLevelsEventContent> for RoomPowerLevels
sourcefn from(c: RedactedRoomPowerLevelsEventContent) -> Self
fn from(c: RedactedRoomPowerLevelsEventContent) -> Self
Converts to this type from the input type.
sourceimpl StateEventContent for RedactedRoomPowerLevelsEventContent
impl StateEventContent for RedactedRoomPowerLevelsEventContent
type StateKey = EmptyStateKey
type StateKey = EmptyStateKey
The type of the event’s state_key
field.
impl RedactedEventContent for RedactedRoomPowerLevelsEventContent
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more