[][src]Trait atelier_core::error::AndPanic

pub trait AndPanic: Display {
    fn panic(&self) -> ! { ... }
}

Allows any value that implements Display to be the message in a panic.

Provided methods

fn panic(&self) -> !

Call panic! using the string serialization of the current value.

Loading content...

Implementors

impl AndPanic for ErrorKind[src]

Loading content...