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

pub struct CoordinatorState {
    pub keys: EncryptKeyPair,
    pub round_id: u64,
    pub round_params: RoundParameters,
    pub min_sum_count: u64,
    pub min_update_count: u64,
    pub min_sum2_count: u64,
    pub max_sum_count: u64,
    pub max_update_count: u64,
    pub max_sum2_count: u64,
    pub min_sum_time: u64,
    pub min_update_time: u64,
    pub min_sum2_time: u64,
    pub max_sum_time: u64,
    pub max_update_time: u64,
    pub max_sum2_time: u64,
}

The coordinator state.

Fields

keys: EncryptKeyPair

The credentials of the coordinator.

round_id: u64

Internal ID used to identify a round

round_params: RoundParameters

The round parameters.

min_sum_count: u64

The minimum of required sum messages.

min_update_count: u64

The minimum of required update messages.

min_sum2_count: u64

The minimum of required sum2 messages.

max_sum_count: u64

The maximum of accepted sum messages.

max_update_count: u64

The maximum of accepted update messages.

max_sum2_count: u64

The maximum of accepted sum2 messages.

min_sum_time: u64

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

min_update_time: u64

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

min_sum2_time: u64

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

max_sum_time: u64

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

max_update_time: u64

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

max_sum2_time: u64

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

Implementations

impl CoordinatorState[src]

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

Trait Implementations

impl Debug for CoordinatorState[src]

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

impl FromRedisValue for CoordinatorState[src]

impl PartialEq<CoordinatorState> for CoordinatorState[src]

impl Serialize for CoordinatorState[src]

impl StructuralPartialEq for CoordinatorState[src]

impl ToRedisArgs for CoordinatorState[src]

impl<'a> ToRedisArgs for &'a 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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>, 

impl<T> WithSubscriber for T[src]