pub enum CustomBalloon<'a> {
Application(&'a str),
URL,
Handwriting,
DigitalTouch,
ApplePay,
Fitness,
Slideshow,
CheckIn,
FindMy,
Polls,
Business,
}Expand description
iMessage app balloon kind.
App integrations use custom balloons instead of the normal text bubble. This enum identifies the supported balloon families.
Variants§
Application(&'a str)
Generic third-party application.
URL
URL preview.
Handwriting
Handwritten animated message.
DigitalTouch
Digital Touch message.
ApplePay
Apple Pay message (one of Sent, Requested, Received)
Fitness
Fitness.app message.
Slideshow
Photos.app slideshow message.
CheckIn
Check In message.
FindMy
Find My message.
Polls
Poll message.
Business
Apple Business Chat message.
Trait Implementations§
Source§impl<'a> Debug for CustomBalloon<'a>
impl<'a> Debug for CustomBalloon<'a>
impl<'a> Eq for CustomBalloon<'a>
Source§impl<'a> PartialEq for CustomBalloon<'a>
impl<'a> PartialEq for CustomBalloon<'a>
Source§fn eq(&self, other: &CustomBalloon<'a>) -> bool
fn eq(&self, other: &CustomBalloon<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for CustomBalloon<'a>
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> UnsafeUnpin 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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.