pub type PolicyRuleUserEvent = StateEvent<PolicyRuleUserEventContent>;
Available on crate feature
events
only.Expand description
An m.policy.rule.user
event.
Aliased Type§
enum PolicyRuleUserEvent {
Original(OriginalStateEvent<PolicyRuleUserEventContent>),
Redacted(RedactedStateEvent<RedactedPolicyRuleUserEventContent>),
}
Variants§
Original(OriginalStateEvent<PolicyRuleUserEventContent>)
Original, unredacted form of the event.
Redacted(RedactedStateEvent<RedactedPolicyRuleUserEventContent>)
Redacted form of the event with minimal fields.
Implementations
Source§impl<C> StateEvent<C>where
C: StaticStateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent<StateKey = <C as StateEventContent>::StateKey> + RedactedStateEventContent,
impl<C> StateEvent<C>where
C: StaticStateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent<StateKey = <C as StateEventContent>::StateKey> + RedactedStateEventContent,
Sourcepub fn event_type(&self) -> StateEventType
Available on crate feature unstable-msc3489
only.
pub fn event_type(&self) -> StateEventType
unstable-msc3489
only.Returns the type
of this event.
Sourcepub fn event_id(&self) -> &EventId
Available on crate feature unstable-msc3489
only.
pub fn event_id(&self) -> &EventId
unstable-msc3489
only.Returns this event’s event_id
field.
Sourcepub fn sender(&self) -> &UserId
Available on crate feature unstable-msc3489
only.
pub fn sender(&self) -> &UserId
unstable-msc3489
only.Returns this event’s sender
field.
Sourcepub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
Available on crate feature unstable-msc3489
only.
pub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
unstable-msc3489
only.Returns this event’s origin_server_ts
field.
Sourcepub fn room_id(&self) -> &RoomId
Available on crate feature unstable-msc3489
only.
pub fn room_id(&self) -> &RoomId
unstable-msc3489
only.Returns this event’s room_id
field.
Sourcepub fn state_key(&self) -> &<C as StateEventContent>::StateKey
Available on crate feature unstable-msc3489
only.
pub fn state_key(&self) -> &<C as StateEventContent>::StateKey
unstable-msc3489
only.Returns this event’s state_key
field.
Sourcepub fn as_original(&self) -> Option<&OriginalStateEvent<C>>
Available on crate feature unstable-msc3489
only.
pub fn as_original(&self) -> Option<&OriginalStateEvent<C>>
unstable-msc3489
only.Get the inner OriginalStateEvent
if this is an unredacted event.
Trait Implementations
Source§impl<C> Clone for StateEvent<C>where
C: Clone + StaticStateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent + Clone,
impl<C> Clone for StateEvent<C>where
C: Clone + StaticStateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent + Clone,
Source§fn clone(&self) -> StateEvent<C>
fn clone(&self) -> StateEvent<C>
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<C> Debug for StateEvent<C>where
C: Debug + StaticStateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent + Debug,
impl<C> Debug for StateEvent<C>where
C: Debug + StaticStateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent + Debug,
Source§impl<'de, C> Deserialize<'de> for StateEvent<C>where
C: StaticStateEventContent + EventContentFromType + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent<StateKey = <C as StateEventContent>::StateKey> + EventContentFromType + RedactedStateEventContent,
impl<'de, C> Deserialize<'de> for StateEvent<C>where
C: StaticStateEventContent + EventContentFromType + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent<StateKey = <C as StateEventContent>::StateKey> + EventContentFromType + RedactedStateEventContent,
Source§fn deserialize<D>(
deserializer: D,
) -> Result<StateEvent<C>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<StateEvent<C>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more