Type Alias TResult

Source
pub type TResult = Result<Element, TransformationError>;
Expand description

Transformation result type

Aliased Type§

pub enum TResult {
    Ok(Element),
    Err(TransformationError),
}

Variants§

§1.0.0

Ok(Element)

Contains the success value

§1.0.0

Err(TransformationError)

Contains the error value