[][src]Struct tendermint_light_client::builder::SupervisorBuilder

#[must_use]pub struct SupervisorBuilder<State> { /* fields omitted */ }

Builder for the Supervisor

Implementations

impl<Current> SupervisorBuilder<Current>[src]

pub fn evidence_reporting_timeout(self, timeout: Option<Duration>) -> Self[src]

Set the timeout for fork evidence submission

impl SupervisorBuilder<Init>[src]

pub fn new() -> Self[src]

Create an empty builder

pub fn primary(
    self,
    peer_id: PeerId,
    address: Address,
    instance: Instance
) -> SupervisorBuilder<HasPrimary>
[src]

Set the primary Instance.

impl SupervisorBuilder<HasPrimary>[src]

pub fn witness(
    self,
    peer_id: PeerId,
    address: Address,
    instance: Instance
) -> SupervisorBuilder<Done>
[src]

Add a witness Instance.

pub fn witnesses(
    self,
    witnesses: impl IntoIterator<Item = (PeerId, Address, Instance)>
) -> Result<SupervisorBuilder<Done>, Error>
[src]

Add multiple witnesses at once.

impl SupervisorBuilder<Done>[src]

#[must_use]pub fn build_prod(self) -> Supervisor[src]

Build a production (non-mock) Supervisor.

#[must_use]pub fn inner(self) -> (PeerList<Instance>, PeerList<Address>)[src]

Get the underlying list of instances and addresses.

Trait Implementations

impl Default for SupervisorBuilder<Init>[src]

Auto Trait Implementations

impl<State> !RefUnwindSafe for SupervisorBuilder<State>[src]

impl<State> Send for SupervisorBuilder<State> where
    State: Send
[src]

impl<State> Sync for SupervisorBuilder<State> where
    State: Sync
[src]

impl<State> Unpin for SupervisorBuilder<State> where
    State: Unpin
[src]

impl<State> !UnwindSafe for SupervisorBuilder<State>[src]

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,