pub type NbtResult<T> = Result<T, NbtError>;
A type declaration to store data T or return an error of NbtError
T
NbtError
enum NbtResult<T> { Ok(T), Err(NbtError), }
Contains the success value
Contains the error value