pub struct SimulationCallData {
pub name: String,
pub params: HashMap<String, ValueWord>,
}Expand description
Data for SimulationCall variant (boxed to keep HeapValue small).
Fields§
§name: String§params: HashMap<String, ValueWord>Trait Implementations§
Source§impl Clone for SimulationCallData
impl Clone for SimulationCallData
Source§fn clone(&self) -> SimulationCallData
fn clone(&self) -> SimulationCallData
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 moreAuto Trait Implementations§
impl Freeze for SimulationCallData
impl RefUnwindSafe for SimulationCallData
impl Send for SimulationCallData
impl Sync for SimulationCallData
impl Unpin for SimulationCallData
impl UnsafeUnpin for SimulationCallData
impl UnwindSafe for SimulationCallData
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