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

use failure::Error;

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

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

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