pub struct VMConfig {
pub ext_costs: ExtCostsConfig,
pub grow_mem_cost: u32,
pub regular_op_cost: u32,
pub limit_config: VMLimitConfig,
}
Fields§
§ext_costs: ExtCostsConfig
Costs for runtime externals
grow_mem_cost: u32
Gas cost of a growing memory by single page.
regular_op_cost: u32
Gas cost of a regular operation.
limit_config: VMLimitConfig
Describes limits for VM and Runtime.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for VMConfig
impl<'de> Deserialize<'de> for VMConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<VMConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<VMConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for VMConfig
impl Serialize for VMConfig
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for VMConfig
impl StructuralPartialEq for VMConfig
Auto Trait Implementations§
impl Freeze for VMConfig
impl RefUnwindSafe for VMConfig
impl Send for VMConfig
impl Sync for VMConfig
impl Unpin for VMConfig
impl UnwindSafe for VMConfig
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