rustc_middle::ty::layout

Trait MaybeResult

Source
pub trait MaybeResult<T> {
    type Error;

    // Required methods
    fn from(x: Result<T, Self::Error>) -> Self;
    fn to_result(self) -> Result<T, Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn from(x: Result<T, Self::Error>) -> Self

Source

fn to_result(self) -> Result<T, Self::Error>

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.

Implementations on Foreign Types§

Source§

impl<T, E> MaybeResult<T> for Result<T, E>

Source§

type Error = E

Source§

fn from(x: Result<T, Self::Error>) -> Self

Source§

fn to_result(self) -> Result<T, Self::Error>

Implementors§

Source§

impl<T> MaybeResult<T> for T