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