#[repr(C)]
pub union NotificationMessageData {
pub sound: NotificationMessageDataSound,
pub led: NotificationMessageDataLed,
pub led_blink: NotificationMessageDataLedBlink,
pub vibro: NotificationMessageDataVibro,
pub delay: NotificationMessageDataDelay,
pub forced_settings: NotificationMessageDataForcedSettings,
}Fields
sound: NotificationMessageDataSoundled: NotificationMessageDataLedled_blink: NotificationMessageDataLedBlinkvibro: NotificationMessageDataVibrodelay: NotificationMessageDataDelayforced_settings: NotificationMessageDataForcedSettingsTrait Implementations
sourceimpl Clone for NotificationMessageData
impl Clone for NotificationMessageData
sourcefn clone(&self) -> NotificationMessageData
fn clone(&self) -> NotificationMessageData
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NotificationMessageData
Auto Trait Implementations
impl RefUnwindSafe for NotificationMessageData
impl Send for NotificationMessageData
impl Sync for NotificationMessageData
impl Unpin for NotificationMessageData
impl UnwindSafe for NotificationMessageData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more