Type Alias shuttle_tower::ShuttleTower

source ·
pub type ShuttleTower<T> = Result<TowerService<T>, Error>;
Expand description

The return type that should be returned from the [shuttle_runtime::main] function.

Aliased Type§

enum ShuttleTower<T> {
    Ok(TowerService<T>),
    Err(Error),
}

Variants§

§1.0.0

Ok(TowerService<T>)

Contains the success value

§1.0.0

Err(Error)

Contains the error value