[][src]Struct exonum_testkit::TestNetworkConfiguration

pub struct TestNetworkConfiguration { /* fields omitted */ }

A configuration of the test network.

Methods

impl TestNetworkConfiguration[src]

pub fn us(&self) -> &TestNode[src]

Returns the node from whose perspective the testkit operates.

pub fn set_us(&mut self, us: TestNode)[src]

Modifies the node from whose perspective the testkit operates.

pub fn validators(&self) -> &[TestNode][src]

Returns the test network validators.

pub fn consensus_configuration(&self) -> &ConsensusConfig[src]

Returns the current consensus configuration.

pub fn actual_from(&self) -> Height[src]

Return the height, starting from which this configuration becomes actual.

pub fn set_actual_from(&mut self, actual_from: Height)[src]

Modifies the height, starting from which this configuration becomes actual.

pub fn set_consensus_configuration(&mut self, consensus: ConsensusConfig)[src]

Modifies the current consensus configuration.

pub fn set_validators<I>(&mut self, validators: I) where
    I: IntoIterator<Item = TestNode>, 
[src]

Modifies the validators list.

pub fn service_config<D>(&self, id: &str) -> D where
    D: Deserialize<'de>, 
[src]

Returns the configuration for service with the given identifier.

pub fn set_service_config<D>(&mut self, id: &str, config: D) where
    D: Serialize
[src]

Modifies the configuration of the service with the given identifier.

pub fn stored_configuration(&self) -> &StoredConfiguration[src]

Returns the resulting exonum blockchain configuration.

Trait Implementations

impl Clone for TestNetworkConfiguration[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TestNetworkConfiguration[src]

impl Serialize for TestNetworkConfiguration[src]

impl<'de> Deserialize<'de> for TestNetworkConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Serialize for T where
    T: Serialize + ?Sized
[src]