Type Alias concordium_std::ParseResult

source ·
pub type ParseResult<A> = Result<A, ParseError>;
Expand description

A type alias used to indicate that the value is a result of parsing from binary via the Serial instance.

Aliased Type§

enum ParseResult<A> {
    Ok(A),
    Err(ParseError),
}

Variants§

§1.0.0

Ok(A)

Contains the success value

§1.0.0

Err(ParseError)

Contains the error value