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