pub struct SimpleParamInfo {
pub name: CString,
pub param_type: ParameterTypes,
pub default: Option<f32>,
pub min: Option<f32>,
pub max: Option<f32>,
pub group: Option<String>,
}Fields§
§name: CString§param_type: ParameterTypes§default: Option<f32>§min: Option<f32>§max: Option<f32>§group: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for SimpleParamInfo
impl Clone for SimpleParamInfo
Source§fn clone(&self) -> SimpleParamInfo
fn clone(&self) -> SimpleParamInfo
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 moreSource§impl Debug for SimpleParamInfo
impl Debug for SimpleParamInfo
Source§impl Default for SimpleParamInfo
impl Default for SimpleParamInfo
Source§fn default() -> SimpleParamInfo
fn default() -> SimpleParamInfo
Returns the “default value” for a type. Read more
Source§impl ParamInfo for SimpleParamInfo
impl ParamInfo for SimpleParamInfo
Auto Trait Implementations§
impl Freeze for SimpleParamInfo
impl RefUnwindSafe for SimpleParamInfo
impl Send for SimpleParamInfo
impl Sync for SimpleParamInfo
impl Unpin for SimpleParamInfo
impl UnwindSafe for SimpleParamInfo
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