[][src]Struct human_panic::Metadata

pub struct Metadata {
    pub version: Cow<'static, str>,
    pub name: Cow<'static, str>,
    pub authors: Cow<'static, str>,
    pub homepage: Cow<'static, str>,
}

A convenient metadata struct that describes a crate

Fields

version: Cow<'static, str>

The crate version

name: Cow<'static, str>

The crate name

authors: Cow<'static, str>

The list of authors of the crate

homepage: Cow<'static, str>

The URL of the crate's website

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,