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: boolWhether this is a default rule, or has been set explicitly.
enabled: boolWhether the push rule is enabled or not.
rule_id: TThe ID of this rule.
This is generally the Matrix ID of the entity that it applies to.
Trait Implementations§
Source§impl<T> Debug for SimplePushRuleInit<T>where
    T: Debug,
 
impl<T> Debug for SimplePushRuleInit<T>where
    T: Debug,
Source§impl<T> From<SimplePushRuleInit<T>> for PushRule
 
impl<T> From<SimplePushRuleInit<T>> for PushRule
Source§fn from(init: SimplePushRuleInit<T>) -> PushRule
 
fn from(init: SimplePushRuleInit<T>) -> PushRule
Converts to this type from the input type.
Source§impl<T> From<SimplePushRuleInit<T>> for SimplePushRule<T>
 
impl<T> From<SimplePushRuleInit<T>> for SimplePushRule<T>
Source§fn from(init: SimplePushRuleInit<T>) -> SimplePushRule<T>
 
fn from(init: SimplePushRuleInit<T>) -> SimplePushRule<T>
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