1 2 3 4 5 6 7 8 9 10
use std::fmt::Debug; #[derive(Clone, Debug)] pub enum SwitchedParams<U> where U: Clone + Debug + Send + Sync, { Key(u32), Direct(U), }