#[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_id§flags: clap_param_info_flags§name: [c_char; 256]§module: [c_char; 1024]§min_value: f64§max_value: f64§default_value: f64Trait Implementations§
Source§impl Clone for clap_param_info
impl Clone for clap_param_info
Source§fn clone(&self) -> clap_param_info
fn clone(&self) -> clap_param_info
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 moreSource§impl Debug for clap_param_info
impl Debug for clap_param_info
impl Copy for clap_param_info
impl Send for clap_param_info
impl Sync for clap_param_info
Auto Trait Implementations§
impl Freeze for clap_param_info
impl RefUnwindSafe for clap_param_info
impl Unpin for clap_param_info
impl UnwindSafe for clap_param_info
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