[][src]Struct podo_core_driver::RuntimeError

pub struct RuntimeError(pub Box<dyn Debug + Send>);

Implementations

impl RuntimeError[src]

pub fn expect<T>(message: &'static str) -> Result<T, Self>[src]

pub fn expect_os<T>(message: OsString) -> Result<T, Self>[src]

pub fn message<T>(message: String) -> Result<T, Self>[src]

pub fn unexpected<T>() -> Result<T, Self>[src]

pub fn unreachable<T>() -> Result<T, Self>[src]

pub fn unimplemented<T>() -> Result<T, Self>[src]

Trait Implementations

impl Debug for RuntimeError[src]

impl<E> From<E> for RuntimeError where
    E: Error + Send + 'static, 
[src]

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> Downcast for T where
    T: Any
[src]

impl<T> From<!> for T[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.