Struct ruma_common::push::SimplePushRuleInit
source · pub struct SimplePushRuleInit<T> {
pub actions: Vec<Action>,
pub default: bool,
pub enabled: bool,
pub rule_id: T,
}
Expand description
Initial set of fields of SimplePushRule
.
This struct will not be updated even if additional fields are added to SimplePushRule
in a new
(non-breaking) release of the Matrix specification.
Fields§
§actions: Vec<Action>
Actions to determine if and how a notification is delivered for events matching this rule.
default: bool
Whether this is a default rule, or has been set explicitly.
enabled: bool
Whether the push rule is enabled or not.
rule_id: T
The ID of this rule.
This is generally the Matrix ID of the entity that it applies to.
Trait Implementations§
source§impl<T: Debug> Debug for SimplePushRuleInit<T>
impl<T: Debug> Debug for SimplePushRuleInit<T>
source§impl<T> From<SimplePushRuleInit<T>> for SimplePushRule<T>
impl<T> From<SimplePushRuleInit<T>> for SimplePushRule<T>
source§fn from(init: SimplePushRuleInit<T>) -> Self
fn from(init: SimplePushRuleInit<T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for SimplePushRuleInit<T>where
T: Freeze,
impl<T> RefUnwindSafe for SimplePushRuleInit<T>where
T: RefUnwindSafe,
impl<T> Send for SimplePushRuleInit<T>where
T: Send,
impl<T> Sync for SimplePushRuleInit<T>where
T: Sync,
impl<T> Unpin for SimplePushRuleInit<T>where
T: Unpin,
impl<T> UnwindSafe for SimplePushRuleInit<T>where
T: UnwindSafe,
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