pub type ReplyResult<T> = Result<Option<ReplyTo<T>>, Error>;
A result type for ReplyTo which is used to reply if wrapped with Some.
enum ReplyResult<T> { Ok(Option<(Sender<T>, T)>), Err(Error), }
Contains the success value
Contains the error value