Files @ 8642f7a7bf01
Branch filter:

Location: CSY/reowolf/src/runtime/error.rs

8642f7a7bf01 432 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
Christopher Esterhuyse
communication phase under reconstruction
use crate::common::*;

#[derive(Debug)]
pub enum EndpointError {
    MalformedMessage,
    BrokenEndpoint,
}
#[derive(Debug)]
pub enum TryRecyAnyError {
    Timeout,
    PollFailed,
    EndpointError { error: EndpointError, index: usize },
    BrokenEndpoint(usize),
}
#[derive(Debug)]
pub enum SyncError {
    Timeout,
    NotConnected,
    InconsistentProtoComponent(ProtoComponentId),
    IndistinguishableBatches([usize; 2]),
}