Type Alias ServerResult

Source
pub type ServerResult = Result<Server, Error>;
Expand description

Result of starting the Server.

Aliased Type§

enum ServerResult {
    Ok(Server),
    Err(Error),
}

Variants§

§1.0.0

Ok(Server)

Contains the success value

§1.0.0

Err(Error)

Contains the error value