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