[][src]Struct damn_vuln_blockchain::config::Config

pub struct Config {
    pub mode_addr: Addr<ModeActor>,
    pub peer_id: String,
    pub public_ip: String,
    pub auditor_node: String,
    pub asset_addr: Addr<AssetLedger>,
    pub chain_addr: Addr<Chain>,
    pub tampered_chain_addr: Option<Addr<Chain>>,
    pub network_addr: Addr<Network>,
    pub init_network_size: usize,
}

Fields

mode_addr: Addr<ModeActor>peer_id: Stringpublic_ip: Stringauditor_node: Stringasset_addr: Addr<AssetLedger>chain_addr: Addr<Chain>tampered_chain_addr: Option<Addr<Chain>>network_addr: Addr<Network>init_network_size: usize

Implementations

impl Config[src]

pub fn new() -> Self[src]

pub fn debug(&self, msg: &str)[src]

debug logging wrapper

pub fn info(&self, msg: &str)[src]

info logging wrapper

pub async fn bootstrap<'_>(&'_ self)[src]

impl Config[src]

pub async fn sync<'_>(&'_ self)[src]

Trait Implementations

impl Clone for Config[src]

Auto Trait Implementations

impl !RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl !UnwindSafe for Config

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,