pub struct ParameterSpace { /* private fields */ }Implementations§
Source§impl ParameterSpace
impl ParameterSpace
pub fn new() -> Result<Self>
pub fn n_combinations(&self) -> usize
pub fn combination_name(&self, cno: usize) -> Result<String>
pub fn set_index_parameters<I: Index>( &self, index: &mut I, parameter_string: &str, ) -> Result<()>
pub fn set_index_parameters_cno<I: Index>( &self, index: &mut I, cno: usize, ) -> Result<()>
pub fn set_index_parameter<I: Index>( &self, index: &mut I, name: &str, value: f64, ) -> Result<()>
pub fn display(&self)
pub fn add_range(&mut self, name: &str) -> Result<()>
Trait Implementations§
Source§impl Default for ParameterSpace
impl Default for ParameterSpace
Auto Trait Implementations§
impl Freeze for ParameterSpace
impl RefUnwindSafe for ParameterSpace
impl !Send for ParameterSpace
impl !Sync for ParameterSpace
impl Unpin for ParameterSpace
impl UnsafeUnpin for ParameterSpace
impl UnwindSafe for ParameterSpace
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