protoc_grpcio

Type Alias CompileResult

Source
pub type CompileResult<T> = Result<T, CompileError>;
Expand description

Custom result type used throughout this crate.

Aliased Type§

enum CompileResult<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value