Trait parse_display::IntoResult [−][src]
pub trait IntoResult<T> {
type Err;
fn into_result(self) -> Result<T, Self::Err>;
}Associated Types
Required methods
fn into_result(self) -> Result<T, Self::Err>[src]
fn into_result(self) -> Result<T, Self::Err>[src]Implementations on Foreign Types
impl<T> IntoResult<T> for Option<T>[src]
impl<T> IntoResult<T> for Option<T>[src]impl<T, E> IntoResult<T> for Result<T, E>[src]
impl<T, E> IntoResult<T> for Result<T, E>[src]Implementors
impl<T> IntoResult<T> for T[src]
impl<T> IntoResult<T> for T[src]