IntoInternal

Trait IntoInternal 

Source
pub trait IntoInternal: Sized {
    // Required method
    fn into_internal(self, what: impl Display) -> InternalError;
}

Required Methods§

Source

fn into_internal(self, what: impl Display) -> InternalError

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<E> IntoInternal for E
where Error: From<E>,