[][src]Struct runtime_fmt::Param

pub struct Param<'a> { /* fields omitted */ }

A type-erased parameter, with an optional name.

Methods

impl<'a> Param<'a>[src]

pub fn normal<T>(t: &'a T) -> Param<'a>[src]

Create a nameless parameter from the given value.

pub fn named<T>(name: &'static str, t: &'a T) -> Param<'a>[src]

Create a named parameter from the given value.

Auto Trait Implementations

impl<'a> !Send for Param<'a>

impl<'a> Unpin for Param<'a>

impl<'a> !Sync for Param<'a>

impl<'a> !UnwindSafe for Param<'a>

impl<'a> !RefUnwindSafe for Param<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]