pub enum AndroidAutoMessage {
Input(InputEventIndication),
Other,
}Expand description
The types of messages that can be sent over the android auto link
Variants§
Implementations§
Source§impl AndroidAutoMessage
impl AndroidAutoMessage
Sourcepub fn sendable(self) -> SendableAndroidAutoMessage
pub fn sendable(self) -> SendableAndroidAutoMessage
Convert the message to something that can be sent TODO: Figure out how to relay the correct channel id to this function
Auto Trait Implementations§
impl !Freeze for AndroidAutoMessage
impl RefUnwindSafe for AndroidAutoMessage
impl Send for AndroidAutoMessage
impl Sync for AndroidAutoMessage
impl Unpin for AndroidAutoMessage
impl UnwindSafe for AndroidAutoMessage
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