pub type HandlerResult<T> = Result<T, HandlerError>;Expand description
Result type returned by MibHandler::get and
MibHandler::get_next.
Err means the handler failed to process the request and the agent must
answer genErr; see HandlerError for when to return which.
Aliased Type§
pub enum HandlerResult<T> {
Ok(T),
Err(HandlerError),
}