[][src]Struct xaynet_server::settings::MaskSettings

pub struct MaskSettings {
    pub group_type: GroupType,
    pub data_type: DataType,
    pub bound_type: BoundType,
    pub model_type: ModelType,
}

Masking settings.

Fields

group_type: GroupType

The order of the finite group.

Examples

TOML

[mask]
group_type = "Integer"

Environment variable

XAYNET_MASK__GROUP_TYPE=Integer
data_type: DataType

The data type of the numbers to be masked.

Examples

TOML

[mask]
data_type = "F32"

Environment variable

XAYNET_MASK__DATA_TYPE=F32
bound_type: BoundType

The bounds of the numbers to be masked.

Examples

TOML

[mask]
bound_type = "B0"

Environment variable

XAYNET_MASK__BOUND_TYPE=B0
model_type: ModelType

The maximum number of models to be aggregated.

Examples

TOML

[mask]
model_type = "M3"

Environment variable

XAYNET_MASK__MODEL_TYPE=M3

Trait Implementations

impl Clone for MaskSettings[src]

impl Copy for MaskSettings[src]

impl Debug for MaskSettings[src]

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

impl Validate for MaskSettings[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> 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>, 

impl<T> WithSubscriber for T[src]