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