Type Alias McfResult

Source
type McfResult = Result<(), (Span, Cow<'static, str>)>;

Aliased Type§

enum McfResult {
    Ok(()),
    Err((Span, Cow<'static, str>)),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err((Span, Cow<'static, str>))

Contains the error value

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.