Enum xmz_server::ServerError[][src]

pub enum ServerError {
    Bincode(BincodeError),
    Configure(ConfigureError),
    CouldNotBuildFromConfig(TomlDeError),
    CouldNotBuildFromRuntime(BincodeError),
    IO(IOError),
    Output(OutputError),
    RuntimePathNotSet,
    ServerBuilder,
    TomlDe(TomlDeError),
    TomlSer(TomlSerError),
}

Mögliche Server Fehler

Variants

Trait Implementations

impl Debug for ServerError
[src]

Formats the value using the given formatter. Read more

impl Display for ServerError
[src]

Formats the value using the given formatter. Read more

impl Error for ServerError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl From<BincodeError> for ServerError
[src]

Performs the conversion.

impl From<ConfigureError> for ServerError
[src]

Performs the conversion.

impl From<IOError> for ServerError
[src]

Performs the conversion.

impl From<TomlDeError> for ServerError
[src]

Performs the conversion.

impl From<TomlSerError> for ServerError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for ServerError

impl Sync for ServerError