pub type DecodeResult<T> = Result<T, GameDecodeError>;Expand description
The result of a decoding operation.
Aliased Type§
pub enum DecodeResult<T> {
Ok(T),
Err(GameDecodeError),
}pub type DecodeResult<T> = Result<T, GameDecodeError>;The result of a decoding operation.
pub enum DecodeResult<T> {
Ok(T),
Err(GameDecodeError),
}