Struct eest_types::StateTestUnit
source · pub struct StateTestUnit {
pub info: Option<Value>,
pub env: Env,
pub pre: HashMap<Address, AccountInfo>,
pub post: BTreeMap<SpecName, Vec<StateTest>>,
pub transaction: TransactionParts,
pub out: Option<Bytes>,
pub config: Config,
}
Expand description
Single test unit struct
Fields§
§info: Option<Value>
Test info is optional.
env: Env
§pre: HashMap<Address, AccountInfo>
§post: BTreeMap<SpecName, Vec<StateTest>>
§transaction: TransactionParts
§out: Option<Bytes>
§config: Config
Trait Implementations§
source§impl Debug for StateTestUnit
impl Debug for StateTestUnit
source§impl<'de> Deserialize<'de> for StateTestUnit
impl<'de> Deserialize<'de> for StateTestUnit
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
source§impl PartialEq for StateTestUnit
impl PartialEq for StateTestUnit
source§fn eq(&self, other: &StateTestUnit) -> bool
fn eq(&self, other: &StateTestUnit) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for StateTestUnit
impl StructuralPartialEq for StateTestUnit
Auto Trait Implementations§
impl Freeze for StateTestUnit
impl RefUnwindSafe for StateTestUnit
impl Send for StateTestUnit
impl Sync for StateTestUnit
impl Unpin for StateTestUnit
impl UnwindSafe for StateTestUnit
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.