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