1// SPDX-License-Identifier: MIT OR Apache-2.0 2 3#[derive(Clone, Default)] 4pub enum RestartStrategy { 5 #[default] 6 OneForOne, 7 OneForAll, 8}