pub struct ParamValues {
pub values: HashMap<String, ScalarValue>,
}Expand description
Resolved parameter values for one render. Nodes look up $name
references here.
Fields§
§values: HashMap<String, ScalarValue>Implementations§
Source§impl ParamValues
impl ParamValues
Trait Implementations§
Source§impl Clone for ParamValues
impl Clone for ParamValues
Source§fn clone(&self) -> ParamValues
fn clone(&self) -> ParamValues
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 ParamValues
impl Debug for ParamValues
Source§impl Default for ParamValues
impl Default for ParamValues
Source§fn default() -> ParamValues
fn default() -> ParamValues
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParamValues
impl RefUnwindSafe for ParamValues
impl Send for ParamValues
impl Sync for ParamValues
impl Unpin for ParamValues
impl UnsafeUnpin for ParamValues
impl UnwindSafe for ParamValues
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