Struct const_panic::fmt::IsPanicFmt

source ·
pub struct IsPanicFmt<S: ?Sized, T: ?Sized, K> { /* private fields */ }
Expand description

A marker type that proves that S implements PanicFmt<This = T, Kind = K>.

Used by const_panic macros to coerce both standard library and user-defined types into some type that has a to_panicvals method.

Implementations§

source§

impl<T: PanicFmt + ?Sized> IsPanicFmt<T, T::This, T::Kind>

source

pub const NEW: Self = _

Constucts an IsPanicFmt

source§

impl<S: ?Sized, T: ?Sized, K> IsPanicFmt<S, T, K>

source

pub const fn infer(self, _: &S) -> Self

Infers the S type parameter with the argument.

Because the only ways to construct IsPanicFmt use IsPanicFmt<S, S::This, S::Kind>, the other type parameters are inferred along with S.

source§

impl<S: ?Sized, T: ?Sized> IsPanicFmt<S, T, IsStdType>

source

pub const fn coerce(self, x: &T) -> StdWrapper<&T>

For coercing &T to StdWrapper<&T>.

source§

impl<S: ?Sized, T: ?Sized> IsPanicFmt<S, T, IsCustomType>

source

pub const fn coerce(self, x: &T) -> &T

For coercing &T (with any amount of stacked references) to &T.

Trait Implementations§

source§

impl<S: ?Sized, T: ?Sized, K> Clone for IsPanicFmt<S, T, K>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<S: ?Sized, T: ?Sized, K> Copy for IsPanicFmt<S, T, K>

Auto Trait Implementations§

§

impl<S: ?Sized, T: ?Sized, K> RefUnwindSafe for IsPanicFmt<S, T, K>

§

impl<S: ?Sized, T: ?Sized, K> Send for IsPanicFmt<S, T, K>

§

impl<S: ?Sized, T: ?Sized, K> Sync for IsPanicFmt<S, T, K>

§

impl<S: ?Sized, T: ?Sized, K> Unpin for IsPanicFmt<S, T, K>

§

impl<S: ?Sized, T: ?Sized, K> UnwindSafe for IsPanicFmt<S, T, K>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, W> HasTypeWitness<W> for Twhere W: MakeTypeWitness<Arg = T>, T: ?Sized,

source§

const WITNESS: W = W::MAKE

A constant of the type witness
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.