[][src]Struct xaynet::state_machine::coordinator::CoordinatorState

pub struct CoordinatorState {
    pub keys: EncryptKeyPair,
    pub round_params: RoundParameters,
    pub min_sum_count: usize,
    pub min_update_count: usize,
    pub min_sum_time: u64,
    pub min_update_time: u64,
    pub max_sum_time: u64,
    pub max_update_time: u64,
    pub expected_participants: usize,
    pub mask_config: MaskConfig,
    pub model_size: usize,
    pub events: EventPublisher,
}

The coordinator state.

Fields

keys: EncryptKeyPair

The credentials of the coordinator.

round_params: RoundParameters

The round parameters.

min_sum_count: usize

The minimum of required sum/sum2 messages.

min_update_count: usize

The minimum of required update messages.

min_sum_time: u64

The minimum time (in seconds) reserved for processing sum/sum2 messages.

min_update_time: u64

The minimum time (in seconds) reserved for processing update messages.

max_sum_time: u64

The maximum time (in seconds) permitted for processing sum/sum2 messages.

max_update_time: u64

The maximum time (in seconds) permitted for processing update messages.

expected_participants: usize

The number of expected participants.

mask_config: MaskConfig

The masking configuration.

model_size: usize

The size of the model.

events: EventPublisher

The event publisher.

Implementations

impl CoordinatorState[src]

pub fn new(
    pet_settings: PetSettings,
    mask_settings: MaskSettings,
    model_settings: ModelSettings
) -> (Self, EventSubscriber)
[src]

Trait Implementations

impl Debug for CoordinatorState[src]

Auto Trait Implementations

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

impl<T> WithSubscriber for T[src]