pub struct ParameterSet {
pub map: IndexMap<String, Value>,
}Expand description
A named set of runtime parameters.
Fields§
§map: IndexMap<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for ParameterSet
impl Clone for ParameterSet
Source§fn clone(&self) -> ParameterSet
fn clone(&self) -> ParameterSet
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParameterSet
impl Debug for ParameterSet
Source§impl Default for ParameterSet
impl Default for ParameterSet
Source§fn default() -> ParameterSet
fn default() -> ParameterSet
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParameterSet
impl PartialEq for ParameterSet
Source§fn eq(&self, other: &ParameterSet) -> bool
fn eq(&self, other: &ParameterSet) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParameterSet
Auto Trait Implementations§
impl Freeze for ParameterSet
impl RefUnwindSafe for ParameterSet
impl Send for ParameterSet
impl Sync for ParameterSet
impl Unpin for ParameterSet
impl UnsafeUnpin for ParameterSet
impl UnwindSafe for ParameterSet
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