pub type NitfResult<T> = Result<T, NitfError>;
pub enum NitfResult<T> { Ok(T), Err(NitfError), }
Contains the success value
Contains the error value