pub enum CustomBalloon<'a> {
Application(&'a str),
URL,
Handwriting,
DigitalTouch,
ApplePay,
Fitness,
Slideshow,
CheckIn,
FindMy,
Polls,
}
Expand description
Application Messages
Messages sent via an app’s iMessage integration will send in a special balloon instead of a normal text balloon. This represents the different variants of message balloon.
Variants§
Application(&'a str)
Generic third party applications
URL
URL previews
Handwriting
Handwritten animated messages
DigitalTouch
Digital Touch message
ApplePay
Apple Pay (one of Sent, Requested, Received)
Fitness
Fitness.app messages
Slideshow
Photos.app slideshow messages
CheckIn
Check In messages
FindMy
Find My messages
Polls
Poll messages
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for CustomBalloon<'a>
impl<'a> RefUnwindSafe for CustomBalloon<'a>
impl<'a> Send for CustomBalloon<'a>
impl<'a> Sync for CustomBalloon<'a>
impl<'a> Unpin for CustomBalloon<'a>
impl<'a> UnwindSafe for CustomBalloon<'a>
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