#[non_exhaustive]#[repr(u32)]pub enum retro_message_target {
RETRO_MESSAGE_TARGET_ALL = 0,
RETRO_MESSAGE_TARGET_OSD = 1,
RETRO_MESSAGE_TARGET_LOG = 2,
}
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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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 for retro_message_target
impl PartialEq for retro_message_target
impl Copy for retro_message_target
impl Eq for retro_message_target
impl StructuralPartialEq for retro_message_target
Auto Trait Implementations§
impl Freeze for retro_message_target
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§
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