#[non_exhaustive]pub enum Action {
Notify,
NotifyInApp,
SetTweak(Tweak),
}
Expand description
This represents the different actions that should be taken when a rule is matched, and controls how notifications are delivered to the client.
See the spec for details.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Notify
Causes matching events to generate a notification (both in-app and remote / push).
NotifyInApp
Available on crate feature
unstable-msc3768
only.Causes matching events to generate an in-app notification but no remote / push notification.
SetTweak(Tweak)
Sets an entry in the ‘tweaks’ dictionary sent to the push gateway.
Implementations§
Source§impl Action
impl Action
Sourcepub fn is_highlight(&self) -> bool
pub fn is_highlight(&self) -> bool
Whether this action is an Action::SetTweak(Tweak::Highlight(true))
.
Sourcepub fn should_notify(&self) -> bool
pub fn should_notify(&self) -> bool
Whether this action should trigger a notification (either in-app or remote / push).
Sourcepub fn should_notify_remote(&self) -> bool
Available on crate feature unstable-msc3768
only.
pub fn should_notify_remote(&self) -> bool
unstable-msc3768
only.Whether this action should trigger a remote / push notification.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Action
impl<'de> Deserialize<'de> for Action
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
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnwindSafe for Action
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