#[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 duplicate 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 moreimpl Copy for retro_core_option_v2_category
Auto Trait Implementations§
impl Freeze for retro_core_option_v2_category
impl RefUnwindSafe for retro_core_option_v2_category
impl !Send for retro_core_option_v2_category
impl !Sync for retro_core_option_v2_category
impl Unpin for retro_core_option_v2_category
impl UnwindSafe for retro_core_option_v2_category
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