type_PanicInfo
type_PanicInfo (PanicInfo 타입 별칭)
패닉에 대한 정보를 제공하는 구조체의 타입 별칭이에요.
출처: Rust 공식 문서
본문
PanicInfo는 core::panic::PanicInfo와의 혼동을 피하기 위해 PanicHookInfo로 이름이 바뀌었어요.
pub type PanicInfo<'a> = PanicHookInfo<'a>;
패닉에 대한 정보를 제공하는 구조체의 타입 별칭이에요.
출처: Rust 공식 문서
PanicInfo는 core::panic::PanicInfo와의 혼동을 피하기 위해 PanicHookInfo로 이름이 바뀌었어요.
pub type PanicInfo<'a> = PanicHookInfo<'a>;