Struct matrix_sdk_base::ruma::events::policy::rule::server::PolicyRuleServerEventContent
pub struct PolicyRuleServerEventContent(pub PolicyRuleEventContent);
Expand description
The content of an m.policy.rule.server
event.
This event type is used to apply rules to server entities.
Tuple Fields§
§0: PolicyRuleEventContent
Trait Implementations§
§impl Clone for PolicyRuleServerEventContent
impl Clone for PolicyRuleServerEventContent
§fn clone(&self) -> PolicyRuleServerEventContent
fn clone(&self) -> PolicyRuleServerEventContent
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 more§impl Debug for PolicyRuleServerEventContent
impl Debug for PolicyRuleServerEventContent
§impl<'de> Deserialize<'de> for PolicyRuleServerEventContent
impl<'de> Deserialize<'de> for PolicyRuleServerEventContent
§fn deserialize<__D>(
__deserializer: __D
) -> Result<PolicyRuleServerEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<PolicyRuleServerEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl EventContent for PolicyRuleServerEventContent
impl EventContent for PolicyRuleServerEventContent
§type EventType = StateEventType
type EventType = StateEventType
The Rust enum for the event kind’s known types.
§fn event_type(
&self
) -> <PolicyRuleServerEventContent as EventContent>::EventType
fn event_type( &self ) -> <PolicyRuleServerEventContent as EventContent>::EventType
Get the event’s type, like
m.room.message
.§impl From<PolicyRuleServerEventContent> for AnyStateEventContent
impl From<PolicyRuleServerEventContent> for AnyStateEventContent
§fn from(c: PolicyRuleServerEventContent) -> AnyStateEventContent
fn from(c: PolicyRuleServerEventContent) -> AnyStateEventContent
Converts to this type from the input type.
§impl RedactContent for PolicyRuleServerEventContent
impl RedactContent for PolicyRuleServerEventContent
§type Redacted = RedactedPolicyRuleServerEventContent
type Redacted = RedactedPolicyRuleServerEventContent
The redacted form of the event’s content.
§fn redact(self, version: &RoomVersionId) -> RedactedPolicyRuleServerEventContent
fn redact(self, version: &RoomVersionId) -> RedactedPolicyRuleServerEventContent
Transform
self
into a redacted form (removing most or all fields) according to the spec. Read more§impl Serialize for PolicyRuleServerEventContent
impl Serialize for PolicyRuleServerEventContent
§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
§impl StaticStateEventContent for PolicyRuleServerEventContent
impl StaticStateEventContent for PolicyRuleServerEventContent
§type PossiblyRedacted = PossiblyRedactedPolicyRuleServerEventContent
type PossiblyRedacted = PossiblyRedactedPolicyRuleServerEventContent
The possibly redacted form of the event’s content.
§type Unsigned = StateUnsigned<<PolicyRuleServerEventContent as StaticStateEventContent>::PossiblyRedacted>
type Unsigned = StateUnsigned<<PolicyRuleServerEventContent as StaticStateEventContent>::PossiblyRedacted>
The type of the event’s
unsigned
field.Auto Trait Implementations§
impl RefUnwindSafe for PolicyRuleServerEventContent
impl Send for PolicyRuleServerEventContent
impl Sync for PolicyRuleServerEventContent
impl Unpin for PolicyRuleServerEventContent
impl UnwindSafe for PolicyRuleServerEventContent
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