#[repr(C)]pub struct clap_param_info {
pub id: clap_id,
pub flags: clap_param_info_flags,
pub cookie: *mut c_void,
pub name: [c_char; 256],
pub module: [c_char; 1024],
pub min_value: f64,
pub max_value: f64,
pub default_value: f64,
}Fields
id: clap_idflags: clap_param_info_flagsname: [c_char; 256]module: [c_char; 1024]min_value: f64max_value: f64default_value: f64Trait Implementations
sourceimpl Clone for clap_param_info
impl Clone for clap_param_info
sourcefn clone(&self) -> clap_param_info
fn clone(&self) -> clap_param_info
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for clap_param_info
impl Send for clap_param_info
impl Sync for clap_param_info
Auto Trait Implementations
impl RefUnwindSafe for clap_param_info
impl Unpin for clap_param_info
impl UnwindSafe for clap_param_info
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more