pub type Result<T> = Result<T, UnexpectedEnd>;
Expand description
Coding result type
Aliased Type§
enum Result<T> {
Ok(T),
Err(UnexpectedEnd),
}
pub type Result<T> = Result<T, UnexpectedEnd>;
Coding result type
enum Result<T> {
Ok(T),
Err(UnexpectedEnd),
}