pub struct PolicyRuleRoomEventContent(pub PolicyRuleEventContent);
Available on crate feature
events
only.Expand description
The content of an m.policy.rule.room
event.
This event type is used to apply rules to room entities.
Tuple Fields§
§0: PolicyRuleEventContent
Trait Implementations§
Source§impl Clone for PolicyRuleRoomEventContent
impl Clone for PolicyRuleRoomEventContent
Source§fn clone(&self) -> PolicyRuleRoomEventContent
fn clone(&self) -> PolicyRuleRoomEventContent
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 Debug for PolicyRuleRoomEventContent
impl Debug for PolicyRuleRoomEventContent
Source§impl<'de> Deserialize<'de> for PolicyRuleRoomEventContent
impl<'de> Deserialize<'de> for PolicyRuleRoomEventContent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PolicyRuleRoomEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PolicyRuleRoomEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<PolicyRuleRoomEventContent> for AnyStateEventContent
impl From<PolicyRuleRoomEventContent> for AnyStateEventContent
Source§fn from(c: PolicyRuleRoomEventContent) -> AnyStateEventContent
fn from(c: PolicyRuleRoomEventContent) -> AnyStateEventContent
Converts to this type from the input type.
Source§impl RedactContent for PolicyRuleRoomEventContent
impl RedactContent for PolicyRuleRoomEventContent
Source§type Redacted = RedactedPolicyRuleRoomEventContent
type Redacted = RedactedPolicyRuleRoomEventContent
The redacted form of the event’s content.
Source§fn redact(self, _rules: &RedactionRules) -> RedactedPolicyRuleRoomEventContent
fn redact(self, _rules: &RedactionRules) -> RedactedPolicyRuleRoomEventContent
Transform
self
into a redacted form (removing most or all fields) according to the spec. Read moreSource§impl Serialize for PolicyRuleRoomEventContent
impl Serialize for PolicyRuleRoomEventContent
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
Source§impl StateEventContent for PolicyRuleRoomEventContent
impl StateEventContent for PolicyRuleRoomEventContent
Source§fn event_type(&self) -> StateEventType
fn event_type(&self) -> StateEventType
Get the event’s type, like
m.room.name
.Source§impl StaticStateEventContent for PolicyRuleRoomEventContent
impl StaticStateEventContent for PolicyRuleRoomEventContent
Source§type PossiblyRedacted = PossiblyRedactedPolicyRuleRoomEventContent
type PossiblyRedacted = PossiblyRedactedPolicyRuleRoomEventContent
The possibly redacted form of the event’s content.
Source§type Unsigned = StateUnsigned<<PolicyRuleRoomEventContent as StaticStateEventContent>::PossiblyRedacted>
type Unsigned = StateUnsigned<<PolicyRuleRoomEventContent as StaticStateEventContent>::PossiblyRedacted>
The type of the event’s
unsigned
field.impl JsonCastable<AnyStateEventContent> for PolicyRuleRoomEventContent
impl JsonCastable<Map<String, Value>> for PolicyRuleRoomEventContent
impl JsonCastable<RedactedPolicyRuleRoomEventContent> for PolicyRuleRoomEventContent
Auto Trait Implementations§
impl Freeze for PolicyRuleRoomEventContent
impl RefUnwindSafe for PolicyRuleRoomEventContent
impl Send for PolicyRuleRoomEventContent
impl Sync for PolicyRuleRoomEventContent
impl Unpin for PolicyRuleRoomEventContent
impl UnwindSafe for PolicyRuleRoomEventContent
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