TransformResult

Type Alias TransformResult 

Source
pub type TransformResult<T, E> = Result<T, TransformError<E>>;

Aliased Type§

pub enum TransformResult<T, E> {
    Ok(T),
    Err(TransformError<E>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TransformError<E>)

Contains the error value