1 2 3 4 5 6 7 8 9 10 11
pub struct PanicHandler { pub is_decoy: bool, } impl PanicHandler { pub fn new(start_decoy: bool) -> Self { Self { is_decoy: start_decoy, } } }