1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Going down logic.

use failure::Error;

use super::{GoingDown, Landed, OpenStratos, StateMachine};

impl StateMachine for OpenStratos<GoingDown> {
    type Next = OpenStratos<Landed>;

    fn execute(self) -> Result<Self::Next, Error> {
        unimplemented!()
    }
}