pub type PossiblyRedactedRoomJoinRulesEventContent = RoomJoinRulesEventContent;Expand description
The possibly redacted form of RoomJoinRulesEventContent.
This type is used when it’s not obvious whether the content is redacted or not.
Aliased Type§
pub struct PossiblyRedactedRoomJoinRulesEventContent {
pub join_rule: JoinRule,
}Fields§
§join_rule: JoinRuleThe rule used for users wishing to join this room.
Trait Implementations§
Source§impl From<RedactedRoomJoinRulesEventContent> for PossiblyRedactedRoomJoinRulesEventContent
impl From<RedactedRoomJoinRulesEventContent> for PossiblyRedactedRoomJoinRulesEventContent
Source§fn from(value: RedactedRoomJoinRulesEventContent) -> Self
fn from(value: RedactedRoomJoinRulesEventContent) -> Self
Converts to this type from the input type.