#[repr(C)]pub struct retro_core_option_v2_category {
pub key: *const c_char,
pub desc: *const c_char,
pub info: *const c_char,
}Fields§
§key: *const c_charVariable uniquely identifying the option category. Valid key characters are [a-z, A-Z, 0-9, _, -]
desc: *const c_charHuman-readable category description
Used as category menu label when frontend has core option category support
info: *const c_charHuman-readable category information
Used as category menu sublabel when frontend has core option category support Optional (may be NULL or an empty string)
Trait Implementations§
source§impl Clone for retro_core_option_v2_category
impl Clone for retro_core_option_v2_category
source§fn clone(&self) -> retro_core_option_v2_category
fn clone(&self) -> retro_core_option_v2_category
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 more