pub type SetCommitResult = Result<(), SetCommitError>;Available on crate feature
agent only.Expand description
Result of applying one prepared SET varbind.
Validation failures cannot be returned from this phase:
ⓘ
use async_snmp::{SetCommitResult, SetTestError};
let _: SetCommitResult = Err(SetTestError::GeneralFailure);Aliased Type§
pub enum SetCommitResult {
Ok(()),
Err(SetCommitError),
}