pub type SignalResult<T> = Result<T, Error>;
A simplified Result type for operations that can return Error.
Error
enum SignalResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value