#[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.
Trait Implementations§
source§impl Clone for retro_message_target
impl Clone for retro_message_target
source§fn clone(&self) -> retro_message_target
fn clone(&self) -> retro_message_target
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for retro_message_target
impl Debug for retro_message_target
source§impl Hash for retro_message_target
impl Hash for retro_message_target
source§impl PartialEq<retro_message_target> for retro_message_target
impl PartialEq<retro_message_target> for retro_message_target
source§fn eq(&self, other: &retro_message_target) -> bool
fn eq(&self, other: &retro_message_target) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.