#[repr(transparent)]pub struct StdWrapper<T>(pub T);Expand description
A wrapper type used to define methods for std types.
Std types are coerced to this type through the approach used in the
coerce_fmt macro.
§Example
Formatting std types with this type’s to_panicvals methods,
without using macros.
use const_panic::{ArrayString, FmtArg, StdWrapper};
assert_eq!(
ArrayString::<99>::from_panicvals(
&StdWrapper("hello").to_panicvals(FmtArg::DEBUG)
).unwrap(),
r#""hello""#
);
assert_eq!(
ArrayString::<99>::from_panicvals(
&StdWrapper(&[3u8, 5, 8]).to_panicvals(FmtArg::ALT_DEBUG)
).unwrap(),
"[\n 3,\n 5,\n 8,\n]"
);
Tuple Fields§
§0: TImplementations§
Source§impl StdWrapper<&char>
impl StdWrapper<&char>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this char to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this char to a PanicVal.
Source§impl<'s> StdWrapper<&'s [u8]>
impl<'s> StdWrapper<&'s [u8]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [u8; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [u8; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [u16]>
impl<'s> StdWrapper<&'s [u16]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [u16; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [u16; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [u32]>
impl<'s> StdWrapper<&'s [u32]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [u32; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [u32; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [u64]>
impl<'s> StdWrapper<&'s [u64]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [u64; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [u64; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [u128]>
impl<'s> StdWrapper<&'s [u128]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [u128; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [u128; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [usize]>
impl<'s> StdWrapper<&'s [usize]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [usize; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [usize; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [i8]>
impl<'s> StdWrapper<&'s [i8]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [i8; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [i8; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [i16]>
impl<'s> StdWrapper<&'s [i16]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [i16; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [i16; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [i32]>
impl<'s> StdWrapper<&'s [i32]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [i32; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [i32; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [i64]>
impl<'s> StdWrapper<&'s [i64]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [i64; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [i64; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [i128]>
impl<'s> StdWrapper<&'s [i128]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [i128; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [i128; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [isize]>
impl<'s> StdWrapper<&'s [isize]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [isize; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [isize; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [bool]>
impl<'s> StdWrapper<&'s [bool]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [bool; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [bool; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [char]>
impl<'s> StdWrapper<&'s [char]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [char; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [char; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl<'s> StdWrapper<&'s [&'s str]>
impl<'s> StdWrapper<&'s [&'s str]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the slice to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the slice to a PanicVal.
Source§impl<'s, const LEN: usize> StdWrapper<&'s [&'s str; LEN]>
impl<'s, const LEN: usize> StdWrapper<&'s [&'s str; LEN]>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'s>; 1]
Converts the array to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'s>
Converts the array to a PanicVal.
Source§impl StdWrapper<&u8>
impl StdWrapper<&u8>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this u8 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this u8 to a PanicVal.
Source§impl StdWrapper<&u16>
impl StdWrapper<&u16>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this u16 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this u16 to a PanicVal.
Source§impl StdWrapper<&u32>
impl StdWrapper<&u32>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this u32 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this u32 to a PanicVal.
Source§impl StdWrapper<&u64>
impl StdWrapper<&u64>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this u64 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this u64 to a PanicVal.
Source§impl StdWrapper<&u128>
impl StdWrapper<&u128>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this u128 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this u128 to a PanicVal.
Source§impl StdWrapper<&usize>
impl StdWrapper<&usize>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this usize to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this usize to a PanicVal.
Source§impl StdWrapper<&i8>
impl StdWrapper<&i8>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this i8 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this i8 to a PanicVal.
Source§impl StdWrapper<&i16>
impl StdWrapper<&i16>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this i16 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this i16 to a PanicVal.
Source§impl StdWrapper<&i32>
impl StdWrapper<&i32>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this i32 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this i32 to a PanicVal.
Source§impl StdWrapper<&i64>
impl StdWrapper<&i64>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this i64 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this i64 to a PanicVal.
Source§impl StdWrapper<&i128>
impl StdWrapper<&i128>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this i128 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this i128 to a PanicVal.
Source§impl StdWrapper<&isize>
impl StdWrapper<&isize>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Converts this isize to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Converts this isize to a PanicVal.
Source§impl<'s> StdWrapper<&'s bool>
impl<'s> StdWrapper<&'s bool>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 1]
Formats this bool into a single-PanicVal array
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'static>
Formats this bool into a PanicVal
Source§impl<'a> StdWrapper<&'a str>
impl<'a> StdWrapper<&'a str>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'a>; 1]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'a>; 1]
Formats this &str into a single-PanicVal array
Sourcepub const fn to_panicval(self, f: FmtArg) -> PanicVal<'a>
pub const fn to_panicval(self, f: FmtArg) -> PanicVal<'a>
Formats this &str into a PanicVal
Source§impl<'s, 'a, const N: usize> StdWrapper<&'s [PanicVal<'a>; N]>
impl<'s, 'a, const N: usize> StdWrapper<&'s [PanicVal<'a>; N]>
Sourcepub const fn to_panicvals(self, _: FmtArg) -> &'s [PanicVal<'a>; N]
pub const fn to_panicvals(self, _: FmtArg) -> &'s [PanicVal<'a>; N]
Source§impl<'s, 'a> StdWrapper<&'s [PanicVal<'a>]>
impl<'s, 'a> StdWrapper<&'s [PanicVal<'a>]>
Sourcepub const fn to_panicvals(self, _: FmtArg) -> &'s [PanicVal<'a>]
pub const fn to_panicvals(self, _: FmtArg) -> &'s [PanicVal<'a>]
Source§impl<'a, 'b> StdWrapper<&'a &'b [PanicVal<'b>]>
impl<'a, 'b> StdWrapper<&'a &'b [PanicVal<'b>]>
Sourcepub const fn deref_panic_vals(self) -> &'b [PanicVal<'b>]
pub const fn deref_panic_vals(self) -> &'b [PanicVal<'b>]
Coerces a &&[PanicVal<'_>] into a &[PanicVal<'_>]
Source§impl<'a, 'b, const N: usize> StdWrapper<&'a &'b [PanicVal<'b>; N]>
impl<'a, 'b, const N: usize> StdWrapper<&'a &'b [PanicVal<'b>; N]>
Sourcepub const fn deref_panic_vals(self) -> &'b [PanicVal<'b>]
pub const fn deref_panic_vals(self) -> &'b [PanicVal<'b>]
Coerces a &&[PanicVal<'_>; N] into a &[PanicVal<'_>]
Source§impl<'b, const N: usize> StdWrapper<&'b [PanicVal<'b>; N]>
impl<'b, const N: usize> StdWrapper<&'b [PanicVal<'b>; N]>
Sourcepub const fn deref_panic_vals(self) -> &'b [PanicVal<'b>]
pub const fn deref_panic_vals(self) -> &'b [PanicVal<'b>]
Coerces a &[PanicVal<'_>; N] into a &[PanicVal<'_>]
Source§impl<'s> StdWrapper<&'s Option<bool>>
impl<'s> StdWrapper<&'s Option<bool>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<bool> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[bool; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[bool; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[bool; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [bool; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [bool; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [bool; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [bool]>>
impl<'s> StdWrapper<&'s Option<&'s [bool]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [bool]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<u8>>
impl<'s> StdWrapper<&'s Option<u8>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<u8> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[u8; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[u8; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[u8; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [u8; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [u8; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [u8; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [u8]>>
impl<'s> StdWrapper<&'s Option<&'s [u8]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [u8]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<u16>>
impl<'s> StdWrapper<&'s Option<u16>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<u16> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[u16; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[u16; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[u16; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [u16; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [u16; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [u16; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [u16]>>
impl<'s> StdWrapper<&'s Option<&'s [u16]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [u16]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<u32>>
impl<'s> StdWrapper<&'s Option<u32>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<u32> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[u32; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[u32; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[u32; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [u32; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [u32; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [u32; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [u32]>>
impl<'s> StdWrapper<&'s Option<&'s [u32]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [u32]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<u64>>
impl<'s> StdWrapper<&'s Option<u64>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<u64> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[u64; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[u64; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[u64; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [u64; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [u64; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [u64; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [u64]>>
impl<'s> StdWrapper<&'s Option<&'s [u64]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [u64]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<u128>>
impl<'s> StdWrapper<&'s Option<u128>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<u128> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[u128; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[u128; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[u128; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [u128; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [u128; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [u128; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [u128]>>
impl<'s> StdWrapper<&'s Option<&'s [u128]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [u128]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<i8>>
impl<'s> StdWrapper<&'s Option<i8>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<i8> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[i8; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[i8; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[i8; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [i8; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [i8; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [i8; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [i8]>>
impl<'s> StdWrapper<&'s Option<&'s [i8]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [i8]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<i16>>
impl<'s> StdWrapper<&'s Option<i16>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<i16> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[i16; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[i16; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[i16; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [i16; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [i16; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [i16; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [i16]>>
impl<'s> StdWrapper<&'s Option<&'s [i16]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [i16]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<i32>>
impl<'s> StdWrapper<&'s Option<i32>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<i32> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[i32; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[i32; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[i32; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [i32; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [i32; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [i32; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [i32]>>
impl<'s> StdWrapper<&'s Option<&'s [i32]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [i32]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<i64>>
impl<'s> StdWrapper<&'s Option<i64>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<i64> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[i64; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[i64; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[i64; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [i64; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [i64; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [i64; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [i64]>>
impl<'s> StdWrapper<&'s Option<&'s [i64]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [i64]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<i128>>
impl<'s> StdWrapper<&'s Option<i128>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<i128> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[i128; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[i128; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[i128; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [i128; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [i128; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [i128; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [i128]>>
impl<'s> StdWrapper<&'s Option<&'s [i128]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [i128]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<isize>>
impl<'s> StdWrapper<&'s Option<isize>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<isize> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[isize; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[isize; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[isize; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [isize; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [isize; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [isize; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [isize]>>
impl<'s> StdWrapper<&'s Option<&'s [isize]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [isize]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<usize>>
impl<'s> StdWrapper<&'s Option<usize>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<usize> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[usize; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[usize; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[usize; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [usize; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [usize; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [usize; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [usize]>>
impl<'s> StdWrapper<&'s Option<&'s [usize]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [usize]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s str>>
impl<'s> StdWrapper<&'s Option<&'s str>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<&'s str> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<[&'s str; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<[&'s str; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<[&'s str; N]> to a PanicVal array.
Source§impl<'s, const N: usize> StdWrapper<&'s Option<&'s [&'s str; N]>>
impl<'s, const N: usize> StdWrapper<&'s Option<&'s [&'s str; N]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [&'s str; N]> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<&'s [&'s str]>>
impl<'s> StdWrapper<&'s Option<&'s [&'s str]>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'s>; 5]
Converts this Option<& 's [&'s str]> to a PanicVal array.
Source§impl StdWrapper<&NonZeroU8>
impl StdWrapper<&NonZeroU8>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroU8 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroU8 to a PanicVal.
Source§impl StdWrapper<&NonZeroI8>
impl StdWrapper<&NonZeroI8>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroI8 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroI8 to a PanicVal.
Source§impl StdWrapper<&NonZeroU16>
impl StdWrapper<&NonZeroU16>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroU16 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroU16 to a PanicVal.
Source§impl StdWrapper<&NonZeroI16>
impl StdWrapper<&NonZeroI16>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroI16 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroI16 to a PanicVal.
Source§impl StdWrapper<&NonZeroU32>
impl StdWrapper<&NonZeroU32>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroU32 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroU32 to a PanicVal.
Source§impl StdWrapper<&NonZeroI32>
impl StdWrapper<&NonZeroI32>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroI32 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroI32 to a PanicVal.
Source§impl StdWrapper<&NonZeroU64>
impl StdWrapper<&NonZeroU64>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroU64 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroU64 to a PanicVal.
Source§impl StdWrapper<&NonZeroI64>
impl StdWrapper<&NonZeroI64>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroI64 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroI64 to a PanicVal.
Source§impl StdWrapper<&NonZeroU128>
impl StdWrapper<&NonZeroU128>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroU128 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroU128 to a PanicVal.
Source§impl StdWrapper<&NonZeroI128>
impl StdWrapper<&NonZeroI128>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroI128 to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroI128 to a PanicVal.
Source§impl StdWrapper<&NonZeroUsize>
impl StdWrapper<&NonZeroUsize>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroUsize to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroUsize to a PanicVal.
Source§impl StdWrapper<&NonZeroIsize>
impl StdWrapper<&NonZeroIsize>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonZeroIsize to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, fmtarg: FmtArg) -> PanicVal<'static>
Converts this NonZeroIsize to a PanicVal.
Source§impl<'s> StdWrapper<&'s Option<NonZeroU8>>
impl<'s> StdWrapper<&'s Option<NonZeroU8>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroU8> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroI8>>
impl<'s> StdWrapper<&'s Option<NonZeroI8>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroI8> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroU16>>
impl<'s> StdWrapper<&'s Option<NonZeroU16>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroU16> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroI16>>
impl<'s> StdWrapper<&'s Option<NonZeroI16>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroI16> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroU32>>
impl<'s> StdWrapper<&'s Option<NonZeroU32>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroU32> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroI32>>
impl<'s> StdWrapper<&'s Option<NonZeroI32>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroI32> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroU64>>
impl<'s> StdWrapper<&'s Option<NonZeroU64>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroU64> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroI64>>
impl<'s> StdWrapper<&'s Option<NonZeroI64>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroI64> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroU128>>
impl<'s> StdWrapper<&'s Option<NonZeroU128>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroU128> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroI128>>
impl<'s> StdWrapper<&'s Option<NonZeroI128>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroI128> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroUsize>>
impl<'s> StdWrapper<&'s Option<NonZeroUsize>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroUsize> to a PanicVal array.
Source§impl<'s> StdWrapper<&'s Option<NonZeroIsize>>
impl<'s> StdWrapper<&'s Option<NonZeroIsize>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonZeroIsize> to a PanicVal array.
Source§impl<T: ?Sized> StdWrapper<&*const T>
impl<T: ?Sized> StdWrapper<&*const T>
Sourcepub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
Converts this *const T to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
Converts this *const T to a PanicVal.
Source§impl<T: ?Sized> StdWrapper<&*mut T>
impl<T: ?Sized> StdWrapper<&*mut T>
Sourcepub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
Converts this *mut T to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
Converts this *mut T to a PanicVal.
Source§impl<T: ?Sized> StdWrapper<&NonNull<T>>
impl<T: ?Sized> StdWrapper<&NonNull<T>>
Sourcepub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
Converts this NonNull<T> to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
Converts this NonNull<T> to a PanicVal.
Source§impl<'s, T> StdWrapper<&'s Option<NonNull<T>>>
impl<'s, T> StdWrapper<&'s Option<NonNull<T>>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<NonNull<T>> to a PanicVal array.
Source§impl<T: ?Sized> StdWrapper<&PhantomData<T>>
impl<T: ?Sized> StdWrapper<&PhantomData<T>>
Sourcepub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
Converts this PhantomData<T> to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
Converts this PhantomData<T> to a PanicVal.
Source§impl StdWrapper<&PhantomPinned>
impl StdWrapper<&PhantomPinned>
Sourcepub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
Converts this PhantomPinned to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
Converts this PhantomPinned to a PanicVal.
Source§impl StdWrapper<&()>
impl StdWrapper<&()>
Sourcepub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
Converts this () to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
Converts this () to a PanicVal.
Source§impl<'s> StdWrapper<&'s Option<Ordering>>
impl<'s> StdWrapper<&'s Option<Ordering>>
Sourcepub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
pub const fn to_panicvals(self, fmtarg: FmtArg) -> [PanicVal<'static>; 5]
Converts this Option<core::cmp::Ordering> to a PanicVal array.
Source§impl StdWrapper<&Ordering>
impl StdWrapper<&Ordering>
Sourcepub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
Converts this std::cmp::Ordering to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
Converts this std::cmp::Ordering to a PanicVal.
Source§impl StdWrapper<&Ordering>
impl StdWrapper<&Ordering>
Sourcepub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
Converts this std::sync::atomic::Ordering to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
Converts this std::sync::atomic::Ordering to a PanicVal.
Source§impl StdWrapper<&Infallible>
impl StdWrapper<&Infallible>
Sourcepub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
Converts this std::convert::Infallible to a single-element PanicVal array.
Sourcepub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(self, _f: FmtArg) -> PanicVal<'static>
Converts this std::convert::Infallible to a PanicVal.
Source§impl StdWrapper<&Range<usize>>
impl StdWrapper<&Range<usize>>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 3]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 3]
Converts this Range < usize > to a single-element PanicVal array.
Source§impl StdWrapper<&RangeFrom<usize>>
impl StdWrapper<&RangeFrom<usize>>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 2]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 2]
Converts this RangeFrom < usize > to a single-element PanicVal array.
Source§impl StdWrapper<&RangeTo<usize>>
impl StdWrapper<&RangeTo<usize>>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 2]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 2]
Converts this RangeTo < usize > to a single-element PanicVal array.
Source§impl StdWrapper<&RangeToInclusive<usize>>
impl StdWrapper<&RangeToInclusive<usize>>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 2]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 2]
Converts this RangeToInclusive < usize > to a single-element PanicVal array.
Source§impl StdWrapper<&RangeInclusive<usize>>
impl StdWrapper<&RangeInclusive<usize>>
Sourcepub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 3]
pub const fn to_panicvals(self, f: FmtArg) -> [PanicVal<'static>; 3]
Converts this RangeInclusive < usize > to a single-element PanicVal array.
Source§impl StdWrapper<&RangeFull>
impl StdWrapper<&RangeFull>
Sourcepub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(self, _f: FmtArg) -> [PanicVal<'static>; 1]
Converts this RangeFull to a single-element PanicVal array.
Trait Implementations§
Source§impl<T: Clone> Clone for StdWrapper<T>
impl<T: Clone> Clone for StdWrapper<T>
Source§fn clone(&self) -> StdWrapper<T>
fn clone(&self) -> StdWrapper<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<T> PanicFmt for StdWrapper<T>where
T: PanicFmt,
impl<T> PanicFmt for StdWrapper<T>where
T: PanicFmt,
Source§const PV_COUNT: usize = T::PV_COUNT
const PV_COUNT: usize = T::PV_COUNT
Self::to_panicvals
(an inherent method that formats the type for panic messages).