Struct ethjson::test::EthereumTestSuite
source · [−]pub struct EthereumTestSuite {
pub local: Vec<LocalTests>,
pub chain: Vec<ChainTests>,
pub state: Vec<StateTests>,
pub difficulty: Vec<DifficultyTests>,
pub executive: Vec<ExecutiveTests>,
pub transaction: Vec<TransactionTests>,
pub trie: Vec<TrieTests>,
}
Expand description
Describes a github.com/ethereum/tests suite
Fields
local: Vec<LocalTests>
local tests
chain: Vec<ChainTests>
Blockchain tests
state: Vec<StateTests>
State tests
difficulty: Vec<DifficultyTests>
Difficulty tests
executive: Vec<ExecutiveTests>
Executive tests
transaction: Vec<TransactionTests>
Transaction tests
trie: Vec<TrieTests>
Trie tests
Trait Implementations
sourceimpl Debug for EthereumTestSuite
impl Debug for EthereumTestSuite
sourceimpl<'de> Deserialize<'de> for EthereumTestSuite
impl<'de> Deserialize<'de> for EthereumTestSuite
sourcefn 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
sourceimpl PartialEq<EthereumTestSuite> for EthereumTestSuite
impl PartialEq<EthereumTestSuite> for EthereumTestSuite
sourcefn eq(&self, other: &EthereumTestSuite) -> bool
fn eq(&self, other: &EthereumTestSuite) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EthereumTestSuite) -> bool
fn ne(&self, other: &EthereumTestSuite) -> bool
This method tests for !=
.
impl StructuralPartialEq for EthereumTestSuite
Auto Trait Implementations
impl RefUnwindSafe for EthereumTestSuite
impl Send for EthereumTestSuite
impl Sync for EthereumTestSuite
impl Unpin for EthereumTestSuite
impl UnwindSafe for EthereumTestSuite
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more