pub trait IntoOrPanic: Sized + Copy + Debug {
    // Provided method
    fn into_or_panic<T>(self) -> T
       where T: TryFrom<Self> + Debug,
             <T as TryFrom<Self>>::Error: Debug { ... }
}

Provided Methods§

source

fn into_or_panic<T>(self) -> Twhere T: TryFrom<Self> + Debug, <T as TryFrom<Self>>::Error: Debug,

Implementations on Foreign Types§

source§

impl IntoOrPanic for usize

source§

impl IntoOrPanic for i64

source§

impl IntoOrPanic for u64

source§

impl IntoOrPanic for i32

source§

impl IntoOrPanic for isize

source§

impl IntoOrPanic for i16

source§

impl IntoOrPanic for u16

source§

impl IntoOrPanic for u32

Implementors§