[][src]Enum xaynet_server::state_machine::RequestError

pub enum RequestError {
    MessageRejected,
    MessageDiscarded,
    AggregationFailed,
    InternalError(&'static str),
    CoordinatorStorage(StorageError),
    LocalSeedDictAdd(LocalSeedDictAddError),
    SumPartAdd(SumPartAddError),
    MaskScoreIncr(MaskScoreIncrError),
}

Error returned when the state machine fails to handle a request

Variants

MessageRejected

the message was rejected

MessageDiscarded

the message was discarded

AggregationFailed

the model or scalar sent by the participant could not be aggregated

InternalError(&'static str)

the request could not be processed due to an internal error

CoordinatorStorage(StorageError)

a storage request failed

LocalSeedDictAdd(LocalSeedDictAddError)

adding a local seed dict to the seed dictionary failed

SumPartAdd(SumPartAddError)

adding a sum participant to the sum dictionary failed

MaskScoreIncr(MaskScoreIncrError)

incrementing a mask score failed

Trait Implementations

impl Debug for RequestError[src]

impl Display for RequestError[src]

impl Error for RequestError[src]

impl From<Error> for RequestError[src]

impl From<LocalSeedDictAddError> for RequestError[src]

impl From<MaskScoreIncrError> for RequestError[src]

impl From<SumPartAddError> for RequestError[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> 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> ToString for T where
    T: Display + ?Sized
[src]

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]