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