Struct cairo_lang_test_plugin::TestCompilation
source · pub struct TestCompilation {
pub contracts_info: OrderedHashMap<Felt252, ContractInfo>,
pub function_set_costs: OrderedHashMap<FunctionId, OrderedHashMap<CostTokenType, i32>>,
pub named_tests: Vec<(String, TestConfig)>,
pub sierra_program: Program,
}Expand description
Compiled test cases.
Fields§
§contracts_info: OrderedHashMap<Felt252, ContractInfo>§function_set_costs: OrderedHashMap<FunctionId, OrderedHashMap<CostTokenType, i32>>§named_tests: Vec<(String, TestConfig)>§sierra_program: ProgramTrait Implementations§
source§impl Clone for TestCompilation
impl Clone for TestCompilation
source§fn clone(&self) -> TestCompilation
fn clone(&self) -> TestCompilation
Returns a copy 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 moresource§impl<'de> Deserialize<'de> for TestCompilation
impl<'de> Deserialize<'de> for TestCompilation
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for TestCompilation
impl Send for TestCompilation
impl Sync for TestCompilation
impl Unpin for TestCompilation
impl UnwindSafe for TestCompilation
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