Enum ruma_common::push::AnyPushRuleRef
source · pub enum AnyPushRuleRef<'a> {
Override(&'a ConditionalPushRule),
Content(&'a PatternedPushRule),
Room(&'a SimplePushRule<OwnedRoomId>),
Sender(&'a SimplePushRule<OwnedUserId>),
Underride(&'a ConditionalPushRule),
}Expand description
Reference to any kind of push rule.
Variants§
Override(&'a ConditionalPushRule)
Rules that override all other kinds.
Content(&'a PatternedPushRule)
Content-specific rules.
Room(&'a SimplePushRule<OwnedRoomId>)
Room-specific rules.
Sender(&'a SimplePushRule<OwnedUserId>)
Sender-specific rules.
Underride(&'a ConditionalPushRule)
Lowest priority rules.
Implementations§
source§impl<'a> AnyPushRuleRef<'a>
impl<'a> AnyPushRuleRef<'a>
sourcepub fn to_owned(self) -> AnyPushRule
pub fn to_owned(self) -> AnyPushRule
Convert AnyPushRuleRef to AnyPushRule by cloning the inner value.
sourcepub fn applies(
self,
event: &FlattenedJson,
context: &PushConditionRoomCtx
) -> bool
pub fn applies(
self,
event: &FlattenedJson,
context: &PushConditionRoomCtx
) -> bool
Check if the push rule applies to the event.
Arguments
event- The flattened JSON representation of a room message event.context- The context of the room at the time of the event.
Trait Implementations§
source§impl<'a> Clone for AnyPushRuleRef<'a>
impl<'a> Clone for AnyPushRuleRef<'a>
source§fn clone(&self) -> AnyPushRuleRef<'a>
fn clone(&self) -> AnyPushRuleRef<'a>
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