#[non_exhaustive]pub enum Tweak {
Sound(String),
Highlight(bool),
Custom {
name: String,
value: Box<RawValue>,
},
}
Expand description
The set_tweak
action.
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.
Sound(String)
A string representing the sound to be played when this notification arrives.
A value of “default” means to play a default sound. A device may choose to alert the user by some other means if appropriate, eg. vibration.
Highlight(bool)
A boolean representing whether or not this message should be highlighted in the UI.
This will normally take the form of presenting the message in a different color and/or
style. The UI might also be adjusted to draw particular attention to the room in which the
event occurred. If a highlight
tweak is given with no value, its value is defined to be
true
. If no highlight tweak is given at all then the value of highlight
is defined to
be false
.
Custom
A custom tweak
Trait Implementations§
source§impl<'de> Deserialize<'de> for Tweak
impl<'de> Deserialize<'de> for Tweak
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Tweak, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Tweak, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for Tweak
impl Serialize for Tweak
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for Tweak
impl RefUnwindSafe for Tweak
impl Send for Tweak
impl Sync for Tweak
impl Unpin for Tweak
impl UnwindSafe for Tweak
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)