ServerConfigResult

Type Alias ServerConfigResult 

Source
pub type ServerConfigResult = Result<ServerConfig, Error>;
Expand description

A type alias for a Result<ServerConfig, serde_json::Error>.

This is used for operations that can fail during ServerConfig deserialization.

Aliased Type§

pub enum ServerConfigResult {
    Ok(ServerConfig),
    Err(Error),
}

Variants§

§1.0.0

Ok(ServerConfig)

Contains the success value

§1.0.0

Err(Error)

Contains the error value