#[repr(u32)]
#[non_exhaustive]
pub enum retro_message_target {
RETRO_MESSAGE_TARGET_ALL,
RETRO_MESSAGE_TARGET_OSD,
RETRO_MESSAGE_TARGET_LOG,
}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.
RETRO_MESSAGE_TARGET_ALL
RETRO_MESSAGE_TARGET_OSD
RETRO_MESSAGE_TARGET_LOG
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for retro_message_target
impl Send for retro_message_target
impl Sync for retro_message_target
impl Unpin for retro_message_target
impl UnwindSafe for retro_message_target
Blanket Implementations
Mutably borrows from an owned value. Read more
