[][src]Struct xaynet_mobile::Settings

pub struct Settings { /* fields omitted */ }

A participant settings

Implementations

impl Settings[src]

pub fn new() -> Self[src]

Create new empty settings.

pub fn set_keys(&mut self, keys: SigningKeyPair)[src]

Set the participant signing keys

pub fn set_scalar(&mut self, scalar: f64)[src]

Set the scalar use for masking

pub fn set_url(&mut self, url: String)[src]

Set the Xaynet coordinator address

pub fn set_max_message_size(&mut self, size: MaxMessageSize)[src]

Sets the maximum possible size of a message.

pub fn check(&self) -> Result<(), SettingsError>[src]

Check whether the settings are complete and valid

Trait Implementations

impl Clone for Settings[src]

impl Debug for Settings[src]

impl Default for Settings[src]

impl TryInto<(String, PetSettings)> for Settings[src]

type Error = SettingsError

The type returned in the event of a conversion error.

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> Instrument for T[src]

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

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