Trait matrix_sdk_base::ruma::events::StaticStateEventContent
source · pub trait StaticStateEventContent: StateEventContent {
type PossiblyRedacted: PossiblyRedactedStateEventContent;
type Unsigned: Clone + Debug + Default + CanBeEmpty + DeserializeOwned;
}
Expand description
Content of a non-redacted state event with a corresponding possibly-redacted type.
Required Associated Types§
sourcetype PossiblyRedacted: PossiblyRedactedStateEventContent
type PossiblyRedacted: PossiblyRedactedStateEventContent
The possibly redacted form of the event’s content.
sourcetype Unsigned: Clone + Debug + Default + CanBeEmpty + DeserializeOwned
type Unsigned: Clone + Debug + Default + CanBeEmpty + DeserializeOwned
The type of the event’s unsigned
field.
Object Safety§
This trait is not object safe.