Type Alias veloren_server::cmd::CmdResult

source ·
type CmdResult<T> = Result<T, Content>;

Aliased Type§

enum CmdResult<T> {
    Ok(T),
    Err(Content),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Content)

Contains the error value