pub type BuildResult<T> = Result<T, BuildError>;Available on crate feature
testing only.Expand description
Alias for the Result type returned by document-builder functions in this module.
Aliased Type§
enum BuildResult<T> {
Ok(T),
Err(BuildError),
}