vmm_sys_util::signalType Alias SignalResult
Source pub type SignalResult<T> = Result<T, Error>;
Expand description
A simplified Result type
for operations that can return Error
.
enum SignalResult<T> {
Ok(T),
Err(Error),
}
Contains the success value