pub struct NewSimplePushRule<T> {
pub rule_id: T,
pub actions: Vec<Action>,
}
Expand description
A simple push rule to update or create.
Fields§
§rule_id: T
The ID of this rule.
This is generally the Matrix ID of the entity that it applies to.
actions: Vec<Action>
Actions to determine if and how a notification is delivered for events matching this rule.
Implementations§
Trait Implementations§
Source§impl<T: Clone> Clone for NewSimplePushRule<T>
impl<T: Clone> Clone for NewSimplePushRule<T>
Source§fn clone(&self) -> NewSimplePushRule<T>
fn clone(&self) -> NewSimplePushRule<T>
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 moreSource§impl<T: Debug> Debug for NewSimplePushRule<T>
impl<T: Debug> Debug for NewSimplePushRule<T>
Source§impl<'de, T> Deserialize<'de> for NewSimplePushRule<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for NewSimplePushRule<T>where
T: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<T> From<NewSimplePushRule<T>> for SimplePushRule<T>
impl<T> From<NewSimplePushRule<T>> for SimplePushRule<T>
Source§fn from(new_rule: NewSimplePushRule<T>) -> Self
fn from(new_rule: NewSimplePushRule<T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for NewSimplePushRule<T>where
T: Freeze,
impl<T> RefUnwindSafe for NewSimplePushRule<T>where
T: RefUnwindSafe,
impl<T> Send for NewSimplePushRule<T>where
T: Send,
impl<T> Sync for NewSimplePushRule<T>where
T: Sync,
impl<T> Unpin for NewSimplePushRule<T>where
T: Unpin,
impl<T> UnwindSafe for NewSimplePushRule<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