pub type RIPTResult<T> = Result<T, RIPTError>;
Defines the Result type of iptables crate
pub enum RIPTResult<T> { Ok(T), Err(RIPTError), }
Contains the success value
Contains the error value